I don't know if this is a bug or just how
I have the following
Steema.TeeChart.Styles.Line series = new Steema.TeeChart.Styles.Line();
series.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Circle;
series.Pointer.HorizSize = 5;
series.Pointer.VertSize = 5;
series.Pointer.Pen.Visible = false;
series.Transparency = 75;
series.Pointer.Transparency = series.Transparency;
series.Pointer.Visible = true;
Steema.TeeChart.Themes.ColorPalettes.ApplyPalette(TChart1, Steema.TeeChart.Themes.Theme.SolidPalette)
I notice that the circles that make up the pointers are colored black and not the same color as the line in the line series. Is this a bug or is it the intention for ApplyPalette to work?
I would like the Pointer to be the same color as the line drawn between the points.
Pointer Brush Color
-
- Advanced
- Posts: 192
- Joined: Thu Feb 01, 2007 12:00 am
- Contact:
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Mike,
I'd seems a bug to me. I've added it (TF02012210) to our defect list to be fixed for future releases.
In the meantime, you can assign series' Brush color to Pointer's color:
I'd seems a bug to me. I've added it (TF02012210) to our defect list to be fixed for future releases.
In the meantime, you can assign series' Brush color to Pointer's color:
Code: Select all
Steema.TeeChart.Styles.Line series = new Steema.TeeChart.Styles.Line(tChart1.Chart);
series.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Circle;
series.Pointer.HorizSize = 5;
series.Pointer.VertSize = 5;
series.Pointer.Pen.Visible = false;
series.Transparency = 75;
series.Pointer.Transparency = series.Transparency;
series.Pointer.Visible = true;
Steema.TeeChart.Themes.ColorPalettes.ApplyPalette(tChart1.Chart, Steema.TeeChart.Themes.Theme.SolidPalette);
series.Pointer.Brush.Color = series.Brush.Color;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |