Hello.
Is there any way to control the thickness of the OHLC bars in TeeCharts for .Net? They seem to always be one point wide. I would like to be able thicken the bars if fewer bars are displayed on a chart and thin the bars if the bars are more densely packed on the chart.
Thanks,
Richard.
Thickness of OHLC Bars
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Richard,
Yes, you can use this:
Yes, you can use this:
Code: Select all
candle1.Pen.Width = 3;
candle1.HighLowPen.Width = 3;
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Richard,
Yes, the first instruction is for setting the pen of the bar that defines the open and close values while the second is for setting the pen of the line that marks high and low vales.
Yes, the first instruction is for setting the pen of the bar that defines the open and close values while the second is for setting the pen of the line that marks high and low vales.
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 |