Points
Posted: Wed Mar 19, 2025 12:42 pm
Hey
im using the 'Point' series on top of 'FastLine' to show the points in the line.
my question is:
can i make the shape of the Pointer of Points to not fill the inner shape with the color?
this is my code to create instance of Points:
For example, if the defined color is red and the shape (Pointer.Style) is triangle, i want to draw a red triangle but transparent on the inside.
im using the 'Point' series on top of 'FastLine' to show the points in the line.
my question is:
can i make the shape of the Pointer of Points to not fill the inner shape with the color?
this is my code to create instance of Points:
Code: Select all
public static Points CreatePointsLine(DataRecVectorM vectorM, Chart chart)
{
return new Points(chart)
{
Color = ChartDataToZData.MColorToDColor(vectorM.Color),
Pointer =
{
Style = vectorM.SelectedSymbolStyle,
HorizSize = 5,
VertSize = 5,
},
};
}