| ||
Introducing SharpPlot Your First Chart Recent Updates Sample Charts Tutorials General Tutorials Chart Tutorials Properties Methods Structures Enumerations Style examples Glossaries Active Charts VectorMath Class DBUtil Class Get SharpPlot Download SharpPlot Buying SharpPlot SharpPlot Support Upgrading from GraPL Release notes |
Reference > SharpPlot Class SharpPlot ClassSharpPlot is a comprehensive library of business and scientific charts. See Constructors, Properties and Methods and Properties for the full list of chart types and the many properties which can be set for them. public class SharpPlot ExampleWith SharpPlot, you first set up any properties (like headings and labels), then you call one of the many Draw methods to build the chart, and finally you Render the result to your chosen format. sp.SetMargins(0); sp.PieChartStyle = PieChartStyles.ValueTags; sp.ValueTagStyle = ValueTagStyles.Inside; sp.SetValueFont("Arial",18,FontStyle.Bold,Color.White); data = new int[] {31,23,16,8}; expl = new int[] {0,0,25,0}; sp.DrawPieChart(data,expl); There are many more example charts in the Tutorial section of this guide. RequirementsNamespace: Causeway Assembly: SharpPlot (in sharpplot.dll) |