IntroductionCreating a chart that is informative to the user is a challenging task. Being focused on the data visualization Nevron Chart for .NET sets the standards in data visualization technology by supporting a variety of features allowing you to create informative and readable charts. One such feature is the complete support for axis scale breaks. |
Features
Fig. 1
Axis scale breaks are most commonly used in the following cases:
Fig. 2
As shown on the above picture (Fig. 1), the noise levels raise dramatically between 10 to 12 o’clock creating a peak in data. The effect is to visually marginalize the other smaller peaks in the sound level, thus reducing the ability of the user of the chart to analyze these smaller peaks. In cases like this one you may consider to introduce a scale break on the y axis in order to increase the chart readability. The following chart (Fig. 2) shows how an automatic scale break will effectively increase the visual space available for the data:
This is achieved through the following code: [C#] NAxis primaryY = (NAxis)chart.Axis (StandardAxis.PrimaryY); NStandardScaleConfigurator noiseScale = primaryY.ScaleConfigurator as NStandardScaleConfigurator; NAutoScaleBreak autoScaleBreak = new NAutoScaleBreak(); noiseScale.ScaleBreaks.Add (autoScaleBreak); [VB.NET] Dim primaryY As NAxis = chart.Axis(StandardAxis.PrimaryY) Dim noiseScale As NStandardScaleConfigurator = CType (primaryY.ScaleConfigurator, NStandardScaleConfigurator) Dim autoScaleBreak As NAutoScaleBreak = New NAutoScaleBreak() noiseScale.ScaleBreaks.Add (autoScaleBreak)
Fig. 3
Notice that now the smaller peaks in data are now more visible, but the chart still does not look quite good. In particular the scale break filling and style do not match the visual appearance of the chart, therefore it is a nice idea to introduce wave scale break style with some other filling (Fig. 3):
This is done with one line of code: [C#] autoScaleBreak.Position = new NContentScaleBreakPosition(); [VB.NET] autoScaleBreak.Position = New NContentScaleBreakPosition() Working with Nevron Chart Scale Breaks you can add custom scale breaks on the chart primary X and Y axes in 2D or 3D charts. |
Conclusion
Chart Scale Breaks Gallery
Nevron Chart for .NET fully supports scale breaks and additionally allows you to customize a variety of options to get the desired result for your charts. Very few charting packages support this level of flexibility when working with scale breaks. More information on scale breaks is available in the Users Guide shipped with the fully-functional evaluation of the Chart component. |
About Nevron SoftwareFounded in 1998, Nevron Software is a component vendor specialized in the development of premium presentation layer solutions for .NET based technologies.
Today Nevron has established itself as the trusted partner worldwide for use in .NET LOB applications, SharePoint portals and Reporting solutions.
Nevron technology is used by many Fortune 500 companies, large financial institutions, global IT consultancies, academic institutions, governments and non-profits.
For more information, visit: www.nevron.com. |
We use cookies to allow us to automate the access and the data entry functions of our website and to correlate online ordering information for purchases you may make while at the website (if any), tailor our website to your preferences or interests, or customize promotions or marketing. For full details read our cookie policy.