Click here to Skip to main content
15,867,568 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,
I am using chart control in asp.net application. I am pretty new to the charts.My question is how to split a chart series.For example the code below. I want to move the last three data point to another series (series2).

C#
double[] yValues1 = { 65.62, 75.54, 60.45, 55.73, 70.42, 200 };
string[] xValues1 = { "France", "Canada", "UK", "USA", "Italy", "Spain" };
chart.Series["Series1"].Points.DataBindXY(xValues1, yValues1);

Series1 should show (65.62, 75.54, 60.45)with values ("France", "Canada", "UK")
And series2 should show (55.73, 70.42, 200) with values("USA", "Italy", "Spain")

Please help I will be really grateful to you,Would really appreciated any suggestion or advice.....thanks in advance.
Posted
Updated 3-Dec-12 1:04am
v2

1 solution

OK, so you'll have to create a second set of values only containing the one you want, then bind your chart control to this second set. This is simple array manipulation, so what's the problem??
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900