HomeCommunityControl GalleryCharting Controls.NET Chart by Nevron

.NET Chart by Nevron



(2) Submit a Review

3,193 Downloads

36,826 Views


Description

Nevron Chart for .NET is the industry's leading charting solution for ASP.NET and Windows application development. The component has been designed from scratch to meet your charting requirements and wrap them up in a well thought and consistent programming model. Whether you need to build business, scientific, financial or presentational charting enabled applications, or even full featured, integrated BI solutions Nevron Chart will deliver the ultimate in data visualization to your WinForm or WebForm application.

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

Excellent

Reviewed by: vinodsatapara on Friday, July 17, 2009

5 Stars

Excellent

Nevron Chart for .NET has taken the complexity out of developing charting solutions for my small development business.

Reviewed by: bojichko on Thursday, December 02, 2004

5 Stars

Nevron Chart for .NET has taken the complexity out of developing charting solutions for my small development business. After looking at the alternatives, I discovered no other product could offer the simplicity, aesthetics, and flexibility for which Nevron delivers in spades particularly for 3D surface functionality. I use Nevron Chart to quickly create great-looking charts for clients with unique and challenging requirements. I can also attest to their superior customer support though their sales and support staff.