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).
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, thanks in advance.
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).
Code:
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);
And series2 should show (55.73, 70.42, 200) with values("USA", "Italy", "Spain")
Please help I will be really grateful to you, thanks in advance.