Hi again
How on earth do I determine the series type when enumerating the series collection?
Code:
For i As Integer = 0 To (mychart.Series.Count - 1)
if mychart.series.item(i).... (what do I put here to determine the style of the series)
Next
*I want to access the style properties as well. I need to determine if the series in question is a line or a candle so I can pass either the line color or the up colour and down colour to another procedure.
Return Series Style
Re: Return Series Style
Hi rossmc,
You should do as follows in CSharp:
You should do as follows in CSharp:
Code: Select all
if (tChart1[i] is Steema.TeeChart.Styles.Bar)
{
((Steema.TeeChart.Styles.Bar)tChart1[i]).MultiBar = Steema.TeeChart.Styles.MultiBars.Stacked;
}
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |