.NET Chart by Nevron - Pie Charts
| Author |
|
| Company |
Nevron Software |
| Source Code Available |
No |
| License Type |
Free to try |
| Submitted On |
April 20, 2012 |
| Updated on |
May 14, 2012 |
| .NET Framework |
2.0, 3.5 |
| Cost |
$589 |
Description
With Nevron Chart for .NET you are able to create great looking 2D and 3D pie charts
in minutes. Visualized as Standard Pie, Torus Segments (Doughnut), Smooth Edge Pies,
Cut Edge Pie, Ring, Smooth Edge Ring, Cut Edge Ring. Rim, center or spider modes
for pie data labels.
Download Full Evaluation
Chart for .NET (ASP.NET AJAX) Online
Demo
Chart for .NET
White Papers
Chart Gallery
Online Help Documentation
Support Portal
Version 2012.1 Released
Introducing ThinWeb Chart Control - a brand new AJAX web control which can be easily
integrated in any server side framework including ASP.NET WebForms and MVC. ThinWeb
Chart Control features:
- Support for Chart Zooming, Scrolling and Panning with many settings
- Support for interactive 3D rotation (Trackball)
- Support for interactive gauge indicator dragging
- Support for custom requests and commands
- Integrated toolbar with lots of predefined actions
See what's new in
Nevron Chart for .NET 2012.1
Syntax Example
using System;
using Nevron.Chart;
using Nevron.GraphicsCore;
...
protected void Page_Load(object sender, EventArgs e)
{
NChartControl1.BackgroundStyle.FrameStyle.Visible = false;
NChartControl1.Panels.Clear();
NChartControl1.Settings.JitterMode = JitterMode.Enabled;
NChartControl1.Settings.JitteringSteps = 16;
NPieChart chart = new NPieChart();
NChartControl1.Charts.Add(chart);
chart.Enable3D = true;
chart.Width = 70;
chart.Depth = 10;
chart.Projection.SetPredefinedProjection(PredefinedProjection.PerspectiveElevated);
chart.LightModel.SetPredefinedLightModel(PredefinedLightModel.ShinyCameraLight);
NPieSeries pie = (NPieSeries)chart.Series.Add(SeriesType.Pie);
pie.PieStyle = PieStyle.SmoothEdgeRing;
pie.InnerRadius = new NLength(40);
pie.PieEdgePercent = 15;
pie.LabelMode = PieLabelMode.SpiderNoOverlap;
pie.AddDataPoint(new NDataPoint(12, "Cars"));
pie.AddDataPoint(new NDataPoint(42, "Trains"));
pie.AddDataPoint(new NDataPoint(56, "Airplanes"));
pie.AddDataPoint(new NDataPoint(23, "Buses"));
pie.AddDataPoint(new NDataPoint(32, "Bikes"));
pie.AddDataPoint(new NDataPoint(29, "Boats"));
NStyleSheet styleSheet = NStyleSheet.CreatePredefinedStyleSheet(PredefinedStyleSheet.BrightMultiColor);
styleSheet.Apply(NChartControl1.Document);
}Screenshots
Reviews
Submit a review