IsColorContrastMode property: Chart class
Description
Use this property to specify a Boolean value indicating whether the color contrast mode for charts is enabled or disabled.
By default, the color contrast mode is enabled for charts.
You can use this property to override the system-wide default. When you use this property to set the color contrast mode for charts, it takes highest precedence.
This property is read/write.
Example
&Chart = GetChart(QE_CDEMO_WRK.QE_CHART_NP);
&Chart.Reset();
rem set color contrast mode on/off;
&Chart.IsColorContrastMode = False;
&Chart.Type = GetChartType();
Related Topics