Hi,
I am trying to change the first bar color to red with the following code,
chartControl1.Series[e.Region.SeriesIndex].Styles[0].Interior = new BrushInfo(GradientStyle.None, Color.Red, Color.Red);
There is no exception but not working.
However if change the Interior to the whole series, it works.
chartControl1.Series[e.Region.SeriesIndex].Style.Interior = new BrushInfo(GradientStyle.None, Color.Red, Color.Red);
Is there any refresh or update method I have to invoke after change the Styles[0].Interior?
(please take a look at method: chartControl1_ChartRegionClick)
Attachment:
CS_efd4c433.7z