com.scichart.charting.visuals.pointmarkers Package
Classes
Class | Description |
---|---|
BasePointMarker | Base class for the PointMarkers, which are small markers drawn once per data point on a com.scichart.charting.visuals.renderableSeries.IRenderableSeries |
CrossPointMarker | Allows a Cross to be rendered at each data point location |
DrawablePointMarker | Allows any custom drawing to be rendered via com.scichart.drawing.common.IRenderContext2D API at each data point location. Derived classes should implement internalDraw which draws PointMarker at specified point. |
EllipsePointMarker | Allows an Ellipse to be rendered at each data point location |
SpritePointMarker | Allows any custom drawing to be rendered as a Sprite (bitmap) at each data point location. Derived classes should provide SpritePointMarker.ISpritePointMarkerDrawer implementation to specify desired drawing. |
SquarePointMarker | Allows a Square to be rendered at each data point location |
TrianglePointMarker | Allows a Triangle to be rendered at each data point location |
Interfaces
Interface | Description |
---|---|
IPointMarker | Specifies interface for rendering point markers. A point marker is something which is displayed at data points |
SpritePointMarker.ISpritePointMarkerDrawer | Interface which provides callback for drawing content of SpritePointMarker |
See Also