ScaleBreak Constructors
Represents an individual scale break within the collection.Name | Parameters | Description |
---|---|---|
ScaleBreak() | none | Initializes a new instance of the ScaleBreak class with the default settings. |
ScaleBreak(String, DateTime, DateTime) | name, edge1, edge2 | Initializes a new instance of the ScaleBreak class with the specified name and Date-Time edges (suitable for an axis whose scale type is date-time). |
ScaleBreak(String, Double, Double) | name, edge1, edge2 | Initializes a new instance of the ScaleBreak class with the specified name and Double edges (suitable for an axis whose scale type is numeric). |
ScaleBreak(String, String, String) | name, edge1, edge2 | Initializes a new instance of the ScaleBreak class with the specified name and String edges (suitable for an axis whose scale type is qualitative). |
ScaleBreak(String, TimeSpan, TimeSpan) | name, edge1, edge2 | Initializes a new instance of the ScaleBreak class with the specified name and time-span edges (suitable for an axis whose scale type is time-span). |
ScaleBreak(String) | name | Initializes a new instance of the ScaleBreak class with the specified name. |
See Also