RangeBreak
public struct RangeBreak : Encodable
Undocumented
-
Determines whether this axis rangebreak is enabled or disabled.
Please note that
rangebreaks
only work for date axis type.Declaration
Swift
public var enabled: Bool?
-
Determines a pattern on the time line that generates breaks.
If day of week - days of the week in English e.g. ‘Sunday’ or
See moresun
(matching is case-insensitive and considers only the first three characters), as well as Sunday-based integers between 0 and 6. If hour - hour (24-hour clock) as decimal numbers between 0 and 24. for more info. Examples: - { pattern: ‘day of week’, bounds: [6, 1] } or simply { bounds: [‘sat’, ‘mon’] } breaks from Saturday to Monday (i.e. skips the weekends). - { pattern: ‘hour’, bounds: [17, 8] } breaks from 5pm to 8am (i.e. skips non-work hours).Declaration
Swift
public enum Pattern : String, Encodable
-
Determines a pattern on the time line that generates breaks.
If day of week - days of the week in English e.g. ‘Sunday’ or
sun
(matching is case-insensitive and considers only the first three characters), as well as Sunday-based integers between 0 and 6. If hour - hour (24-hour clock) as decimal numbers between 0 and 24. for more info. Examples: - { pattern: ‘day of week’, bounds: [6, 1] } or simply { bounds: [‘sat’, ‘mon’] } breaks from Saturday to Monday (i.e. skips the weekends). - { pattern: ‘hour’, bounds: [17, 8] } breaks from 5pm to 8am (i.e. skips non-work hours).Declaration
Swift
public var pattern: Pattern?
-
Sets the size of each
values
item.The default is one day in milliseconds.
Declaration
Swift
public var dValue: Double?
-
When used in a template, named items are created in the output figure in addition to any items the figure already has in this array.
You can modify these items in the output figure by making your own item with
templateitemname
matching thisname
alongside your modifications (includingvisible: false
orenabled: false
to hide it). Has no effect outside of a template.Declaration
Swift
public var name: String?
-
Used to refer to a named item in this array in the template.
Named items from the template will be created even without a matching item in the input figure, but you can modify one by making an item with
templateitemname
matching itsname
, alongside your modifications (includingvisible: false
orenabled: false
to hide it). If there is no template or no matching item, this item will be hidden unless you explicitly show it withvisible: true
.Declaration
Swift
public var templateItemName: String?
-
Creates
RangeBreak
object with specified properties.Declaration
Parameters
enabled
Determines whether this axis rangebreak is enabled or disabled.
bounds
Sets the lower and upper bounds of this axis rangebreak.
pattern
Determines a pattern on the time line that generates breaks.
values
Sets the coordinate values corresponding to the rangebreaks.
dValue
Sets the size of each
values
item.name
When used in a template, named items are created in the output figure in addition to any items the figure already has in this array.
templateItemName
Used to refer to a named item in this array in the template.