Pareto Control
Edit Curve Points Appearance
This page describes how to change the appearance of the curve point for a pareto group. The pareto control of the .Net Analytics package is of the following type:
The series class of the pareto chart is:
The group class of a pareto series is:
A group includes a marker for the appearance of its point. The marker is of the following type:
Additionally, the following marker properties are visible at the group level:
The first step is to include the necessary namespaces
for the controls, add a new series, and add new groups.
Change Curve Point Appearance
Below, we will change the appearance of the curve point for a Pareto group (named pgGroup in the examples below) of a Pareto series (named
psSeries in the
examples below):
[Visual Basic]
' Change the curve point for the first group
pgGroup.PointColor = Color.Blue
pgGroup.PointSize = 6
pgGroup.PointMarker.Type = SEI.Charts.Charts2D.MarkerTypes.Box
' Change the curve point for the second group
psSeries(1).PointColor = Color.Blue
psSeries(1).PointSize = 6
psSeries(1).PointMarker.Type = SEI.Charts.Charts2D.MarkerTypes.Box
[Visual C#]
// Change the curve point for the first group
pgGroup.PointColor = Color.Blue;
pgGroup.PointSize = 6;
pgGroup.PointMarker.Type = SEI.Charts.Charts2D.MarkerTypes.Box;
// Change the curve point for the second group
psSeries[1].PointColor = Color.Blue;
psSeries[1].PointSize = 6;
psSeries[1].PointMarker.Type = SEI.Charts.Charts2D.MarkerTypes.Box;
Charts showing before and after the curve point for groups have been edited: