Skip to main content

Chart Properties

The chart properties define the data, appearance, and user interactions of the chart. The high-level properties are summarized here and described in detail in the linked sections.

NameDescriptionProperty Type
dataArray of objects that define and contain the trend data. This enables the inclusion of data from multiple sources.Data[]
axesObject to configure the x- and y-axes for the chart.Axes
pensArray of objects that configure each pen for the chart.Pen[]
chartObject to configure general aspects of the chart including an optional title and legend.Chart
interactionObject to configure the many interactions available on the chart. These include a menu, zooming, and ways to select parts of the chart to get details about the pen values. This object is described in detail on its own page.Interaction open_in_new.png
themeObject to configure the default appearance of the chart. Many theme properties are available, so this object is described in detail on its own page.Theme open_in_new.png
style

The Ignition style property is not fully supported.

Ignition Style open_in_new.png


Data

NameDescriptionProperty Type
nameThe unique reference name for the dataset. This value is used within the pen properties to define the pen data.String
datasetContains columns with x and y data values. Must use an Ignition dataset.Dataset
isSorted

Specifies if the x values in the dataset are sorted. Setting this value to true when data is sorted improves rendering performance.

 

Note that pens are not assigned to annotations properly for mountain charts when this is false.

Boolean



Axes

NameDescriptionProperty Type
xArray of x-axis properties.Axis[]
yArray of y-axis properties.Axis[]

Axis

NameDescriptionProperty Type
nameThe unique reference name for the axis. This value is used within the pen properties to define a pen axis.String
visibleToggles the visibility of the axis.Boolean
typeThe axis type.AxisType
categoryLabelTypeThe category label type. Available when the axis type is CategoryAxis.CategoryLabelType
categoryLabelsList of category labels used when the categoryLabelType is Text. The index of each item corresponds to the index of the data value.String[]
titleObject to configure the axis title.AxisTitle
ticksObject to configure major and minor ticks for the axis.AxisTicks
gridlinesObject to configure major and minor gridlines for the axis.AxisGridlines
unitsThe units of measure for the axis. Included in the axis title.String
borderObject to configure the axis border color and thickness. This is applied to border between the axis and the area where chart data is drawn.AxisBorder
rangeObject to configure the range of the axis.AxisRange
positionThe position of the axis on the chart. Options are Left, Right, Top, and Bottom.String
labelObject to configure the axis label.AxisLabel

AxisType

NameDescriptionProperty Type
CategoryAxisAxis which renders by index and can be assigned text labels.String
DateTimeNumericAxisValue axis to format date time axis labels.String
NumericAxisValue axis suitable when the axis data is numeric.String
LogarithmicAxisValue axis suitable for numeric data to be presented in logarithmic scale. Supports base 10. String

CategoryLabelType

NameDescriptionProperty Type
TextCategory labels are rendered as text from the categoryLabels property.String
NumericCategory labels correspond to the index of each value.String

AxisTitle

NameDescriptionProperty Type
textThe text displayed for the axis title.String
fontSizeThe font size of the text.Float
fontFamilyThe font family of the text.String
colorThe color of the text.Color open_in_new.png

AxisTicks

NameDescriptionProperty Type
majorObject to configure the major ticks for the axis.AxisTick
minorObject to configure the minor ticks for the axis.AxisTick

AxisTick

NameDescriptionProperty Type
visibleToggles the visibility of the tick lines.Boolean
colorThe color of the tick line.Color open_in_new.png
thicknessThe thickness of the tick line.Float
lengthThe length of the tick line.Float

AxisGridlines

NameDescriptionProperty Type
minorsPerMajorThe number of minor gridlines to draw between each major gridline.Integer
majorObject to configure the major gridlines for the axis.AxisGridline
minorObject to configure the minor gridlines for the axis.AxisGridline

AxisGridline

NameDescriptionProperty Type
visibleToggles the visibility of the gridlines.Boolean
colorThe color of the gridline.Color open_in_new.png
thicknessThe thickness of the gridline.Float
dashArray

Array of float values that specifies the size of dashes and gaps used to draw the gridline. Enter an even number of float values to create a repeating pattern.

Float[]

AxisBorder

NameDescriptionProperty Type
colorThe border color. Overrides the axisBorderColor theme property.Color open_in_new.png
thicknessThe thickness of the border.Float

AxisRange

NameDescriptionProperty Type
flippedCoordinatesReverses the direction of the axis when true. This orders values along the axis from high to low instead of low to high.Boolean
autoSpecifies if the axis range should be set based on the data range or the min and max properties.AxisRangeAuto
minThe minimum value to show for the axis. This overrides the minimum extent of the data when the axis is auto ranging.Float
maxThe maximum value to show for the axis. This overrides the maximum extent of the data when the axis is auto ranging and the min is not set. It is ignored when auto ranging if the min is set.Float

AxisRangeAuto

NameDescriptionProperty Type
AlwaysUpdate the range of the axis when the data changes unless a zoom interaction has changed the visible range.String
NeverNever change the range of the axis except through pan and zoom interactions.String
OnceUpdate the range of the axis to the extents of the data the first time the axis is drawn.String

AxisLabel

NameDescriptionProperty Type
format

The format to use for the axis labels.

 

This is not applied when the axis type is DateTimeNumericAxis.

AxisLabelFormat
fontSizeThe font size of the labels.Float
fontFamilyThe font family of the labels.String
colorThe color of the labels.Color open_in_new.png

AxisLabelFormat

NameDescriptionProperty Type
NoFormatSpecifies no formatting of the axis labels. Defaults to integer whole values.String
DecimalFormats the axis labels with a single decimal place.String
SignificantFiguresFormats the axis labels as a whole number (no decimal places).String
Date_DDMMYYYYFormats the axis labels as DateTime. (eg. 12/31/1969)String
Date_DDMMYYFormats the axis labels as DateTime. (eg. 01/01/70)String
Date_DDMMHHMMFormats the axis labels as DateTime. (eg. 01/01 00:00)String
Date_DDMMFormats the axis labels as DateTime. (eg. 01/01/70)String
Date_HHMMFormats the axis labels as DateTime. (eg. 01/01)String
Date_HHMMSSFormats the axis labels as DateTime. (eg. 00:00)String
ExponentialFormats the axis labels as exponential notation. (eg. 2.0e+1)String
ScientificFormats the axis labels as scientific notation. (eg. 3x10³)String



Pen

NameDescriptionProperty Type
nameThe name of the pen to display in the legend on the chart.String
visible

Toggles the visibility of the pen on the chart. Also toggles the corresponding checkbox in the legend if it is visible.

 

This is a two-way property. It is updated when checkboxes in the legend are toggled directly on the chart.

Boolean
typeThe type of the chart. Options include Line, Scatter, Column, Mountain and Spline.PenType
isDigitalLineLines are rendered as a step line when set to true. A horizontal line is drawn after each data point and a vertical line joins it to the line that starts at the next value.Boolean
pointDataLabelsObject to configure point data labels. They are placed above and to the right of the corresponding data points.PointDataLabel
interpolationPointsThe number of interpolated points to add between data points for Spline and MountainSpline pen types. A higher value results in a smoother waveform.Integer
containsNullSpecifies if the dataset contains null values. When this value is truenull y values will be rendered according to the drawNullMode property set on each pen.Boolean
drawNullModeSpecifies how to render points whose y value is null. This applies to line, spline, mountain and mountain spline pen types.DrawNullMode
axisObject to set the x- and y-axis for the pen.PenAxis
data

Object to set which dataset and columns contain the x and y data values for the pen.

PenData
strokeObject to configure the pen line appearance.PenStroke
fillObject to configure the pen area appearance if applicable. Available for Mountain, MountainSpline and Column pen types.PenFill

PenType

NameDescriptionProperty Type
LineRenders a line connecting data points. Uses linear interpolation unless isDigitalLine is true.String

Scatter

Renders a dot for each data point.String
ColumnRenders a vertical bar or column for each data point.String
MountainA line chart with a color or gradient applied to the area under the line.String
MountainSplineA spline chart with a color or gradient applied to the area under the line.String
SplineRenders a line connecting data points using spline interpolation.String

PointDataLabel

NameDescriptionProperty Type
visibleToggles the visibility of the data labels.Boolean
precisionThe number of decimal places to render on the data labels.Integer
skipNumberThe number of data point labels to skip between ones that are rendered. Set to 0 to render a label for each data point.Integer
paddingObject to configure the padding between each label and its corresponding data point.Padding
colorThe color of the label.String
fontSizeThe font size of the label.String

Padding

NameDescriptionProperty Type

bottom

Number of pixels between the point and the bottom of the label.Float

left

Number of pixels between the point and the left of the label.Float

DrawNullMode

NameDescriptionProperty Type
ContinuousRenders a line in place of null values by interpolating between non-null values when the data containsNull property is true.String

Discontinuous

Does not render a line in place of null values. This is the default.String

PenAxis

NameDescriptionProperty Type
xThe name of the x-axis to plot the pen on.String

y

The name of the y-axis to plot the pen on.String

When configuring pens, it is important to ensure that the pen axes correspond to x- and y-axes that are configured in the axes.x and axes.y props sections, respectively.

PenData

NameDescriptionProperty Type
nameThe unique reference name for the dataset in the data array that contains data values for the pen.String
xColumnNameThe name of the column in the dataset that contains the x values for the pen.String
yColumnNameThe name of the column in the dataset that contains the y values for the pen.String

PenStroke

NameDescriptionProperty Type
colorThe color of the pen line. Overrides penLineStrokepenMountainStrokepenColumnStroke theme properties according to the pen type.Color open_in_new.png
dashArrayAn array of float values that specifies the size of dashes and gaps used to draw the pen. Enter an even number of float values to create a repeating pattern.Float[]
opacity

The opacity to apply to the pen line.

0 = Transparent, 1 = Opaque.

Float
thickness

The thickness of the line.

Integer

PenFill

Fill properties will not appear in the Ignition Designer for line and spline type pens.

NameDescriptionProperty Type
colorThe color of the pen area for ColumnMountain, MountainSpline, and Scatter type pens. Overrides penMountainFill, penColumnFill theme properties according to the pen type.Color open_in_new.png
gradient

Object to configure a linear gradient for the pen area of Column, Mountain, and MountainSpline type pens.

PenFillGradient

PenFillGradient

NameDescriptionProperty Type
startPointThe start point of the gradient axis. This value is relative to the chart area with (0,0) being the top left of the area and (1,1) at the bottom right.PenGradientPoint
endPointThe end point of the gradient axis. This value is relative to the chart area with (0,0) being the top left of the area and (1,1) at the bottom right.PenGradientPoint
gradientStopsArray of objects that define the gradient colors and their relative offset along the gradient axis. Gradient stops must be listed in order of increasing offset.PenGradientStop[]

PenGradientPoint

NameDescriptionProperty Type
xThe x coordinate of the point.Float
yThe y coordinate of the point.Float

PenGradientStop

NameDescriptionProperty Type
colorThe color of the gradient stop.Color open_in_new.png
offsetThe location along the gradient axis of the gradient stop.  Valid values range from 0 through 1.Float


Chart

NameDescriptionProperty Type
heightThe height of the chart. Default is 100% and will fill the space allocated in the Perspective view. Update this if the overview interaction is visible to better control the size of each.String
titleObject to configure the chart title.ChartTitle
legendProps for the chart legend that contains a list of pens for the chart. This can be hidden in favor of a custom legend using the visible property.ChartLegend

ChartTitle

NameDescriptionProperty Type
textThe text displayed for the chart title. Multiple lines can be added using an array of strings.String or String[]
colorThe color of the chart title.Color open_in_new.png
fontSizeThe font size of the chart title.Float
fontFamilyThe font family of the chart title.String
placeWithinChart
Places the chart title inside the chart area if true or above it if false.Boolean

ChartLegend

NameDescriptionProperty Type
visibleToggles the visibility of the legend on the chart.Boolean
showCheckBoxesToggles the visibility of checkboxes next to each pen in the legend. The checkboxes toggle the visibility of the corresponding pens on the chart.Boolean
orientationThe orientation of pens in the legend.LegendOrientation
coordinates

The coordinates for the legend. Relative to the top left of the component div.

 

This is a two-way property. The value is changed when the legend is moved.

LegendCoordinates

LegendOrientation

NameDescriptionProperty Type

Horizontal

Lists pens horizontally in the legend.Float

Vertical

Lists pens vertically in the legend.Float

LegendCoordinates

NameDescriptionProperty Type

x

The x coordinate of the chart legend.Float
yThe y coordinate of the chart legend.Float