An Ignition module that adds support for ApexCharts charting library as a Perspective component. The single Perspective component provides full support for leveraging all ApexCharts library through a simple flexible property model.
See ApexCharts for more details on the library.
The ApexCharts module is an open source project distributed under the Apache 2.0 license. Please feel free to download the source code and contribute.
The component has 3 properties:
Property | Description |
---|---|
type |
The type of ApexChart to use. See below for complete list. |
options |
The options or configuration for the chart. |
series |
The data to display (based on type and options). |
type
The type
property specifies which type of ApexChart you want to use. Possible values are:
See examples for chart types.
options
The options
property specifies the configuration of the chart. The following example defines the options for a pie chart:
{
"chart": {
"type": "pie",
"width": 380,
"events": {
"animationEnd": false,
"beforeMount": false,
"mounted": false,
"updated": false,
"mouseMove": false,
"mouseLeave": false,
"click": false,
"legendClick": false,
"markerClick": false,
"selection": false,
"dataPointSelection": false,
"dataPointMouseEnter": false,
"dataPointMouseLeave": false,
"beforeZoom": false,
"beforeResetZoom": false,
"zoomed": false,
"scrolled": false,
"brushScrolled": false
}
},
"labels": [
"Team A",
"Team B",
"Team C",
"Team D",
"Team E"
],
"responsive": [
{
"breakpoint": 480,
"options": {
"chart": {
"width": 200
},
"legend": {
"position": "bottom"
}
}
}
]
}
ApexCharts provide a wide range of possible options. See documentation for more details. You can use any property from their documentation.
series
The series
property specifies the data for the chart. The data can either be an array or an Ignition DataSet. The data is separate from the options (configuration) because it is possible the data will reload without having to fully reload the chart. The following example defines the data for a pie chart:
[
44,
55,
13,
43,
22
]
This example shows how to specify 2 series of data for a line chart:
[
{
"data": [
28,
29,
33,
36,
32,
32,
33
],
"name": "High - 2013"
},
{
"data": [
12,
11,
14,
18,
17,
13,
13
],
"name": "Low - 2013"
}
]
The data will either be an array of values (for pie charts, donuts, and radial bar) or a dictionary of named series (for all other chart types). You can use an Ignition DataSet instead of a JSON array of values. See ApexCharts examples.
ApexCharts provides a range of event handlers for their charts. The events allow you to respond to various events, such as mouse click, zoom, selection, etc.
All the events are turned off by default on the component. You can easily turn them on by setting the event property to true, located in options->chart->events. The following example enables the click event:
{
"chart": {
"events": {
"animationEnd": false,
"beforeMount": false,
"mounted": false,
"updated": false,
"mouseMove": false,
"mouseLeave": false,
"click": true,
"legendClick": false,
"markerClick": false,
"selection": false,
"dataPointSelection": false,
"dataPointMouseEnter": false,
"dataPointMouseLeave": false,
"beforeZoom": false,
"beforeResetZoom": false,
"zoomed": false,
"scrolled": false,
"brushScrolled": false
}
}
}
Once the event is enabled, you can write a corresponding script handler in the components (right click and select configure events). All of the event handlers have an event object containing details on the event. See the documentation for each event handler for more details.
ApexCharts allows users to define functions for various properties to offer more flexibility. For example, you can define a label formatter that uses JavaScript customize the label. The module supports user defined functions, but you must follow a specific format. For any property that allows a user defined function, simple set the property in Ignition to a string starting with:
function (
The space is important. For example, you can define a dataLabel formatter like this:
{
"dataLabels": {
"enabled": true,
"formatter": "function (value, { seriesIndex, dataPointIndex, w }) { return w.config.series[seriesIndex].name + \": \" + value }"
}
}
Please see ApexCharts documentation for when you can use user defined functions.
It is possible to leverage Perspective theme colors and fonts for the charts. Simply use a defined variable from the theme in replace of the actual color or font. Here is an example of using a theme color:
{
"colors": [
"var(--div-1)",
"var(--qual-5)"
]
}
The Apex Chart component provides the following scripting functions you can interface with in Python:
toggleSeries
This method allows you to toggle the visibility of series programmatically. Useful when you have a custom legend. You can learn more about the toggleSeries function here.
self.getSibling("apexchart").toggleSeries("SeriesA")
showSeries
This method allows you to show the hidden series. If the series is already visible, this doesn’t affect it. You can learn more about the showSeries function here.
self.getSibling("apexchart").showSeries("SeriesA")
hideSeries
This method allows you to hide the visible series. If the series is already hidden, this method doesn’t affect it. You can learn more about the hideSeries function here.
self.getSibling("apexchart").hideSeries("SeriesA")
resetSeries
Resets all toggled series and bring back the chart to its original state. You can learn more about the resetSeries function here.
self.getSibling("apexchart").resetSeries(True, True)
zoomX
Manually zoom into the chart with the start and end X values. You can learn more about the zoomX function here.
self.getSibling("apexchart").zoomX(1698098360040, 1698098480040)
addPointAnnotation
This method can be used to draw annotations after chart is rendered. You can learn more about the addPointAnnotation function here.
self.getSibling("apexchart").addPointAnnotation({
"x": 1698098270040,
"y": 40,
"label": {
"text": "Lorem Ipsum"
},
}, True)
clearAnnotations
This method is used to delete all annotation elements which are added dynamically using the method stated above. You can learn more about the clearAnnotations function here.
self.getSibling("apexchart").clearAnnotations()
updateSeries
Allows you to update the series array overriding the existing one. If you want to append series to existing series. You can learn more about the updateSeries function here.
self.getSibling("apexchart").updateSeries([{
"data": [32, 44, 31, 41, 22]
}], True)