axis.sharedRange

FacetCoord for an example of creating a facet chart.

For a facet chart (a chart with multiple bound X-fields and Y-fields), specifies whether the same scale range should be used across all sub-graphs in a facet, or whether a sub-graph’s scaling should be shared only with sub-graphs in the same row (for Y-axis scaling) or same column (for X-axis scaling). The xAxis, yAxis, and y2Axis properties can be used as a shortcut.

Type

Boolean

Example

Chart1.yAxis.sharedRange = false;

measureSharedRange

Either syntax below can be used in component script:

axis['...'].sharedRange             // unqualified
Chart1.axis['...'].sharedRange      // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.