ASP.NET Pie Chart Examples - different property settings for csASPNetGraph

This page shows a number of pie charts created using csASPNetGraph. The properties have been varied to show the sort of effects possible.

Default properties, except the size is reduced to fit more examples on the page. Pie diameter and centre location are changed to suit the size.

The data is shown as percentages of the total. The number of decimal places is set to one.

ShowPercent = true
Decimals = 1

The labels and values are removed from the pie. The legend area is made bigger by changing the size of the text, squares and spacings.

ShowLabel = false
ShowNumbers = false
Square = 12
Padding = 8
LegendFont = New Font("Arial", 12)

The background colour is transparent. The legend is using white as a background so the image background and text background must be set to the transparent colour ("eeeeee"). To show the values as pounds the prefix property is used and Decimals is set to -2.

Transparent = true
TransColor = "eeeeee"
LabelBGColor = "eeeeee"
BGColor = "eeeeee"
LegendBGColor = "ffffff"
Decimals = -2
Prefix = "£"

The colour is changed so the background is black and the lines are white. The labels have been removed.

ShowLabel = false
GraphPen = "ffffff"
BGColor = "000000"
LegendColor = "ffffff"
LegendBGColor = "000000"
LabelColor = "ffffff"
LabelBGColor = "000000"

The trial component has a sample script included which contains all the properties and their default values. This can be used as a template when using csASPNetGraph, although properties that retain the default values do not need to be specified.

There are also examples available of Bar Charts, Stacked Bar Charts and Line Graphs.

Download csASPNetGraph here.