Search
Plot Class
Remarks See Also
 






The base class for components used to draw chart graphics.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public class Plot : Component, SeriesContainer

Visual Basic  Copy Code

Public Class Plot
    Inherits Component
    Implements SeriesContainer

 Remarks

Plot 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 Hierarchy

System.Object
    MindFusion.Charting.Components.Component
        MindFusion.Charting.Plot
            MindFusion.Charting.Plot2D
            MindFusion.Charting.PolarPlot

 See Also