| ||
Your First Chart Recent Updates Sample Charts Tutorials General Tutorials Chart Tutorials Reference SharpPlot Class 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 |
Home > Introducing SharpPlot Introducing SharpPlotSharpPlot offers a comprehensive range of Properties and Methods for constructing business and scientific charts from arrays of data. The design allows the programmer to create effective graphics with the bare minimum of coding: SharpPlot sp = new SharpPlot(360,240); data = new int[] {18,27,31,12,19,23}; sp.DrawBarChart(data); Bitmap bmp = sp.RenderBitmap(96); To follow the steps required to create a simple business chart you can look at the C# source for a simple command-line program to draw a barchart similar to the one shown above. |