Hello,
I'm using TeeChart for .Net and I'm facing a problem :
I'd like to change the pen style (line, dash, dot ...) while adding points
to a serie, so that the user can see there's a hole in the serie or that
some data are invalid.
I saw the possibility to change the color of the line between points
dynamically, but I cannot see any means to modify the pen style !!
Please help !
Change pen style while adding points to a serie
You can use the GetPointerStyle() event, e.g.
Josep Lluis Jorge
http://support.steema.com
Code: Select all
private void Form1_Load(object sender, System.EventArgs e) {
Steema.TeeChart.Styles.Points points1 = new
Steema.TeeChart.Styles.Points(tChart1.Chart);
points1.GetPointerStyle += new
Steema.TeeChart.Styles.CustomPoint.GetPointerStyleEventHandler(points1_GetPo
interStyle);
points1.FillSampleValues(10);
}
private void points1_GetPointerStyle(Steema.TeeChart.Styles.CustomPoint
series, Steema.TeeChart.Styles.CustomPoint.GetPointerStyleEventArgs e) {
if(e.ValueIndex == 9)
e.Style = Steema.TeeChart.Styles.PointerStyles.Diamond;
}
http://support.steema.com
>Is there a way to do this ?
No, that I know of. This feature is not yet available, I'll add it on our wish list to be considered to inclusion for the next releases.
>Do you consider seriously your support forum is efficient ?
We try to answer your questions as soon as possible , but if you need to be answered more quickly you can subscribe to ProSupport which gives you a priority support.
Josep Lluis Jorge
http://support.steema.com
No, that I know of. This feature is not yet available, I'll add it on our wish list to be considered to inclusion for the next releases.
>Do you consider seriously your support forum is efficient ?
We try to answer your questions as soon as possible , but if you need to be answered more quickly you can subscribe to ProSupport which gives you a priority support.
Josep Lluis Jorge
http://support.steema.com