DefaultMarker: ChartMarkerType;
DefaultMarker: Prognoz.Platform.Interop.Chart.ChartMarkerType;
The DefaultMarker property determines a default marker type.
If not all chart series have the same marker type, the 15 value (Custom) is returned.
To execute the example, add the components to the form:
UiErAnalyzer with configured properties "Active" = true; "Object" = express report containing a line chart.
ChartBox1 with configured property "Source" = identifier of the UiErAnalyzer component.
Sub UserProc();
Begin
ChartBox1.Chart.DefaultMarker := ChartMarkerType.Diamond;
End Sub UserProc;
After executing the example markers are displayed as diamonds.
The conditions and result of the Fore.NET example execution match with those in the Fore example. Use .NET analogs of the components:
Sub UserProc();
Begin
ChartBoxNet1.CtrlBox.Chart.DefaultMarker := ChartMarkerType.cmtDiamond;
End Sub UserProc;
See also: