Interface IPlottable
- Namespace
- ScottPlot
- Assembly
- ScottPlot.dll
Any object that renders shapes on the canvas using scale information from the axes must implement this interface.
public interface IPlottable
- Extension Methods
Properties
Axes
This object performs coordinate/pixel translation at render time based on the latest data area. It stores the axes to use for this plottable and also the data area (in pixels) updated just before each render. If this object is null it will be constructed using the default X and Y axes at render time.
IAxes Axes { get; set; }
Property Value
IsVisible
Toggles whether this plottable is shown and contributes to the automatic axis limit detection. The calling method will check this variable (it does not need to be checked inside the Render method).
bool IsVisible { get; set; }
Property Value
LegendItems
Items which will appear in the legend
IEnumerable<LegendItem> LegendItems { get; }
Property Value
Methods
GetAxisLimits()
Return the 2D area (in coordinate space) occupied by the data contained in this plottable
AxisLimits GetAxisLimits()
Returns
Render(RenderPack)
Draw the data from this plottable into the data area defined in the Axes. By default the surface is already clipped to the data area, but this can be cleared inside the plottable.
void Render(RenderPack rp)
Parameters
rp
RenderPack