Return Series Style
Posted: Tue Sep 29, 2009 1:29 pm
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.
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.