Copying series datapoints to another series using charts in .Net

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Sana Chen
    New Member
    • Dec 2012
    • 1

    Copying series datapoints to another series using charts in .Net

    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).

    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);
    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.
    Last edited by Rabbit; Dec 3 '12, 04:41 PM. Reason: Please use code tags when posting code.
Working...