MindFusion.Charting Programmer's Guide

Chart.ChartGraphics Property

See Also
 





Specifies the Graphics object that is used to draw the chart.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public IGraphics ChartGraphics { get; set; }

Visual Basic  Copy Code

Public Property ChartGraphics As IGraphics

 Property Value

An instance of the IGraphics class.

 Remarks

If you want to draw a chart programmatically, set a valid IGraphics object. This enables you not only to create and save charts in files but also to nest charts in Web applications.

If no valid IGraphics object is set before DrawChart is called, the control shall not visibly draw any chart.

Default value for the ChartGraphics property is null.

 See Also