VectSharp 2.6.1
A light library for C# vector graphics
|
A symbol defined by a GraphicsPath. More...
Public Member Functions | |||||||
void | Plot (Graphics target, PlotElementPresentationAttributes presentationAttributes, string tag) | ||||||
Draw the symbol on the plot.
| |||||||
PathDataPointElement () | |||||||
Create a new PathDataPointElement instance representing a circle. More... | |||||||
PathDataPointElement (GraphicsPath path) | |||||||
Create a new PathDataPointElement instance with the specified path . More... | |||||||
void | Plot (Graphics target, PlotElementPresentationAttributes presentationAttributes, string tag) | ||||||
Draw the symbol on the plot. More... | |||||||
Properties | |
GraphicsPath | Path = new GraphicsPath().Arc(0, 0, 1, 0, 2 * Math.PI).Close() [get, set] |
The GraphicsPath that constitutes the symbol (by default, a circle). More... | |
A symbol defined by a GraphicsPath.
Definition at line 40 of file DataPoints.cs.
VectSharp.Plots.PathDataPointElement.PathDataPointElement | ( | ) |
Create a new PathDataPointElement instance representing a circle.
Definition at line 79 of file DataPoints.cs.
VectSharp.Plots.PathDataPointElement.PathDataPointElement | ( | GraphicsPath | path | ) |
Create a new PathDataPointElement instance with the specified path .
Definition at line 87 of file DataPoints.cs.
void VectSharp.Plots.PathDataPointElement.Plot | ( | Graphics | target, |
PlotElementPresentationAttributes | presentationAttributes, | ||
string | tag | ||
) |
Draw the symbol on the plot.
target | The Graphics object on which to draw. It is assumed that it has been transformed so that the symbol can be drawn centred at (0, 0) |
presentationAttributes | Presentation attributes determining the appearance of the symbol. |
tag | A tag to identify the symbol in the plot. |
Implements VectSharp.Plots.IDataPointElement.
Definition at line 48 of file DataPoints.cs.
|
getset |
The GraphicsPath that constitutes the symbol (by default, a circle).
Definition at line 45 of file DataPoints.cs.