Back to Devexpress

ScaleBreakOptions.Style Property

corelibraries-devexpress-dot-xtracharts-dot-scalebreakoptions.md

latest4.1 KB
Original Source

ScaleBreakOptions.Style Property

Gets or sets a style in which scale breaks‘ edges are drawn.

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
public ScaleBreakStyle Style { get; set; }
vb
Public Property Style As ScaleBreakStyle

Property Value

TypeDescription
ScaleBreakStyle

A ScaleBreakStyle object, which represents the scale break edge style.

|

Available values:

NameDescription
Straight

Indentifies the straight style of scale breaks edges.

| | Ragged |

Indentifies the ragged style of scale breaks edges.

| | Waved |

Indentifies the wavy style of scale breaks edges.

|

Property Paths

You can access this nested property as listed below:

Object TypePath to Style
Axis

.ScaleBreakOptions .Style

|

Remarks

Note that the Style property simultaneously affects all the scale breaks available for an axis (both automatic and manual ).

In addition, to adjust scale breaks appearance, you can use the following properties: ScaleBreakOptions.SizeInPixels and ScaleBreakOptions.Color.

For more information, refer to Scale Breaks.

Example

This example demonstrates how scale breaks can be created within an axis, and customized at runtime.

csharp
// Cast your diagram object to an appropriate diagram type,
// to access its axes.
XYDiagram diagram = (XYDiagram)chartControl1.Diagram;

// Add scale breaks to the Y-axis collection, 
// with their Edge1 and Edge2 properties defined in the constructor.
diagram.AxisY.ScaleBreaks.Add(new ScaleBreak("Scale Break 1", 10, 100));
diagram.AxisY.ScaleBreaks.Add(new ScaleBreak("Scale Break 2", 110, 2000));

// Define the scale breaks' options.
diagram.AxisY.ScaleBreakOptions.Style = ScaleBreakStyle.Ragged;
diagram.AxisY.ScaleBreakOptions.SizeInPixels = 20;
diagram.AxisY.ScaleBreakOptions.Color = Color.Turquoise;
vb
' Cast your diagram object to an appropriate diagram type,
' to access its axes.
Dim diagram As XYDiagram = CType(chartControl1.Diagram, XYDiagram)

' Add scale breaks to the Y-axis collection, 
' with their Edge1 and Edge2 properties defined in the constructor.
diagram.AxisY.ScaleBreaks.Add(New ScaleBreak("Scale Break 1", 10, 100))
diagram.AxisY.ScaleBreaks.Add(New ScaleBreak("Scale Break 2", 110, 2000))

' Define the scale breaks' options.
diagram.AxisY.ScaleBreakOptions.Style = ScaleBreakStyle.Ragged
diagram.AxisY.ScaleBreakOptions.SizeInPixels = 20
diagram.AxisY.ScaleBreakOptions.Color = Color.Turquoise

See Also

Scale Breaks

ScaleBreakOptions Class

ScaleBreakOptions Members

DevExpress.XtraCharts Namespace