The base class for components used to draw chart graphics.
Namespace: MindFusion.Charting
Assembly: MindFusion.Charting
SyntaxC#
Copy Code
|
|---|
public class Plot : Component, SeriesContainer |
Visual Basic
Copy Code
|
|---|
Public Class Plot |
RemarksPlot is the base class for components that provide drawing surface to SeriesRenderer objects used to render series data. Use the derived Plot2D class to draw series in 2D Cartesian coordinate system, using renderers such as LineRenderer or BarRenderer. Use Plot3D to draw in 3D Cartesian coordinate system, using renderers such as BarRenderer3D. PolarPlot is the base class for drawing in polar coordinate system and can be used along with PieRenderer. RadarPlot can contain renderers for radar-chart graphics, such as RadarRenderer and PieRadarRenderer.
Inheritance HierarchySystem.Object![]()
MindFusion.Charting.Components.Component
MindFusion.Charting.Plot
MindFusion.Charting.Plot2D
MindFusion.Charting.PolarPlot
See Also