Page view counter

PieChart



(1) Submit a Review

2,936 Downloads

16,722 Views


Description

PieChart is a free and easy to use opensource asp.net control for creating pie-charts. The control is free for use and modification.

Syntax Example

<%@ Register TagPrefix="Stickler" TagName="PieChart" Src="PieChart.ascx" %> [...] ExamplePieChart.ChartTitle = "PieChart Example"; ExamplePieChart.ImageAlt = "PieChart Example"; ExamplePieChart.ImageWidth = 450; ExamplePieChart.ImageHeight = 250; PieChart_ascx.PieChartElement myPieChartElement1 = new PieChart_ascx.PieChartElement(); PieChart_ascx.PieChartElement myPieChartElement2 = new PieChart_ascx.PieChartElement(); myPieChartElement1.Name = "Example 1"; myPieChartElement1.Percent = 75.0; myPieChartElement1.Color = Color.FromArgb( 56, 56, 56 ); ExamplePieChart.addPieChartElement( myPieChartElement1 ); myPieChartElement2.Name = "Example 2"; myPieChartElement2.Percent = 25.0; myPieChartElement2.Color = Color.FromArgb(255, 255, 0); ExamplePieChart.addPieChartElement(myPieChartElement2); ExamplePieChart.generateChartImage(); [...] <Stickler:PieChart id="ExamplePieChart" runat="server" />

Screenshots

Reviews

Submit a review

Easy to use

Reviewed by: johnneywalker1981 on Saturday, April 12, 2008

3 Stars

It's very easy to use and it's cool. But kinda simple for enterpriese application.

Microsoft Communities