in NT7 I used to write
[XmlIgnore] [Browsable(false)]
private ColorSeries Hist_Plot_Colors { get { return base.PlotColors[4]; } }
then I would access it by writing:
Hist_Plot_Colors[0] = Color.Blue.
In NT8 I write
PlotBrushes[4][0] = Color.Blue;
but I like to write the code as
Hist_Plot_Colors[0] = Brushes.Blue.
what is the equivalent in NT8 of
private ColorSeries Hist_Plot_Colors { get { return base.PlotColors[4]; } }
?
Thank you
G

Comment