Spacing pointers in line series
Posted: Mon Sep 12, 2005 12:46 am
Is there a way to space the pointers in a series (like the 'draw every' in marks) ?
Cheers
Francis Pantus
Cheers
Francis Pantus
Steema Software - Customer Support Forums
http://493266.hkjq7.group/support/
Code: Select all
private void Form1_Load(object sender, System.EventArgs e)
{
line1.FillSampleValues();
line1.Pointer.Visible=true;
}
private void line1_GetPointerStyle(Steema.TeeChart.Styles.CustomPoint series, Steema.TeeChart.Styles.CustomPoint.GetPointerStyleEventArgs e)
{
if (e.ValueIndex % 5 == 0)
e.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle;
else
e.Style = Steema.TeeChart.Styles.PointerStyles.Nothing;
}