Skip to main content
A newer version of this page is available. .

Advanced Charting

  • 2 minutes to read

This document lists advanced features that will provide a professional look to a complex chart.

Complex Data Representation

The XY-Diagram supports an unlimited number of additional panes and secondary axes, which makes it possible to effectively represent complex and diverse data structures in your chart.

PaneInteractionUsingCrosshair

With the crosshair cursor interaction tool, you can track series point coordinates on a chart and analyze data by comparing different graphs. For more information, see the Crosshair Cursor topic.

Flexible Axis Scale

Automatic and Manual Scale Ranges

The ASP.NET Chart Control analyzes incoming data and automatically adjusts the range of its axes to fit all series points. Also, you can manually limit or extend an axis range.

LimitAxisRange

Smart Date-Time Scale

When a series uses the date-time argument scale type, you can use automatic date-time modes. See Data Aggregation to learn more.

DateTimeMeasureUnit_Month

Logarithmic Scale

For numeric data, you can enable the AxisBase.Logarithmic property of an axis.

Logarithmic_1

Automatic and Manual Scale Breaks

When the AutoScaleBreaks.Enabled property is turned on, the ASP.NET Chart Control automatically inserts scale breaks (up to the specified number) into an axis range if the chart’s data contains data points with a large value difference.

Alternatively, a chart’s axis can contain manually added scale breaks to decrease the visual distance between data points with a large value difference.

ScaleBreak_0

Comprehensive Explanatory Capabilities

Smart Series Point Labels

The ASP.NET Chart Control resolves series label overlap, which occurs when a chart displays multiple series data points and series point labels accompanied by series points. You can specify a predefined algorithm to prevent label overlap. See Series Point Labels for more information.

SeriesLabelsMess

Interactive Text and Image Annotations

You can also accompany your chart with any number of text or image annotations that can be anchored to any point on a chart’s surface, a diagram coordinate or a series point.

AnnotationLayout

Chart Titles

You can create an unlimited number of chart titles with HTML and word-wrap support, and position them freely onto your chart.

ChartTitles

Enhanced Legend Capabilities

Using special event handlers, you can fully customize the appearance and layout of the legend items, i.e., change the marker appearance (colors, fill style, size and visibility) and adjust text options (font, color and visibility).

You can also specify custom images for legend item markers.

LegendItems

See Also