Search found 3 matches

by dove
Fri Aug 18, 2006 12:41 am
Forum: .NET
Topic: delete to highlow data
Replies: 5
Views: 5817

Hi,

Thank you very much~

This seems to work ok with following:

Code: Select all

if (tChart1.Series[index1] is Steema.TeeChart.Styles.HighLow) 
{ 
	(tChart1.Series[index1] as Steema.TeeChart.Styles.HighLow).LowValues.RemoveAt(0); 
} 
by dove
Thu Aug 17, 2006 11:07 am
Forum: .NET
Topic: delete to highlow data
Replies: 5
Views: 5817

Thanks! but I can't see correct data in my chart... please see the following code : private void btnChart_Click(object sender, System.EventArgs e) { chartUtil.ChartClear(tChart1); Line lineSeries = chartUtil.AddLineSeries(tChart1, "TEST", VerticalAxis.Left, Color.Blue, false, true); lineSeries.Add(l...
by dove
Thu Aug 17, 2006 12:28 am
Forum: .NET
Topic: delete to highlow data
Replies: 5
Views: 5817

delete to highlow data

Hi. I'm trying to delete first point in highlow chart. but the highlow chart is displayed strange line chart is good. I used the following code to delete private void btnDelete_Click(object sender, System.EventArgs e) { for (int index1 = 0; index1 < tChart1.Series.Count; index1++) { if (tChart1.Seri...