Group: Forum Members
Last Active: 12 Years Ago
Posts: 21,
Visits: 1
|
Hi~
I added a long data to a series's XValues. But the chart is no response. Only integer is available?
Sample code is here.
NPointSeries m_Point; NChart m_Chart;
m_Chart = nChartControl1.Charts[0]; m_Point = (NPointSeries)m_Chart.Series.Add(SeriesType.Point); m_Point.UseXValues = true;
m_Point.XValues.Add(10000000000); m_Point.Values.Add(10000000000);
|