Search found 4 matches

by Maz
Fri Apr 17, 2009 10:09 am
Forum: VCL
Topic: THistogramSeries Hollow line: how ho hide vertical lines
Replies: 6
Views: 4526

Thanks Alonso,
it works perfectly as my needs !

Regards
Massimo
by Maz
Thu Apr 16, 2009 3:00 pm
Forum: VCL
Topic: THistogramSeries Hollow line: how ho hide vertical lines
Replies: 6
Views: 4526

9348257 wrote: series1 := TBarSeries.Create(nil);
...
X := series1.CalcXPos(series1.Count-1) + series1.BarWidth;
Thanks Alonso,
and how to identify X in case of THistogramSeries ?
I don't have the BarWidth property in THistogramSeries...

Massimo
by Maz
Thu Apr 16, 2009 11:36 am
Forum: VCL
Topic: THistogramSeries Hollow line: how ho hide vertical lines
Replies: 6
Views: 4526

9348257 wrote:Hi Massimo,

Have you tried this?

Code: Select all

Series1.Pen.Color := Series1.Color;
Hi Yeray,
I need to modify the color only for one side of the bar, for example something like this:

Series1.<bar left side>Pen.Color := clWhite;
by Maz
Thu Apr 16, 2009 9:59 am
Forum: VCL
Topic: THistogramSeries Hollow line: how ho hide vertical lines
Replies: 6
Views: 4526

THistogramSeries Hollow line: how ho hide vertical lines

Hello, I am a Teechart 8 user on Delphi 7 / 2007 platform, and this is my situation: - Normally I plot a simple vertical bar chart that represents some values during the days of a month. - Sometimes I need to show an additional target line, this target line can vary from day to day. - I found the Hi...