Plugins Introduction
The library provides a rich set of charting capabilities out of the box, but developers can also extend its functionality by building custom plugins.
Plugins in Lightweight Charts™️ come in two types: custom series and drawing primitives. Custom series allow developers to define new types of series, while drawing primitives enable the creation of custom visualizations, drawing tools, and chart annotations (and more) which can be attached to an existing series.
In the majority of cases you will most likely be better served by using a Drawing Primitive plugin unless you are specifically looking to create a new type of series.
With the flexibility provided by these plugins, developers can create highly customizable charting applications for their users.
Custom Series
Custom series allow developers to create new types of series with their own data structures, and rendering logic (implemented using CanvasRenderingContext2D methods). These custom series extend the current capabilities of our built-in series, providing a consistent API which mirrors the built-in chart types. These series are expected to have a uniform width for each data point, which ensures that the chart maintains a consistent look and feel across all series types. The only restriction on the data structure is that it should extend the WhitespaceData interface (have a valid time property for each data point).
You can find a more detailed guide to developing custom series in the Custom Series Types article.
Adding a custom series to a chart
A custom series can be added to a chart using the
addCustomSeries
method
which expects an instance of a class implementing the
ICustomSeriesPaneView interface
as the first argument, and an optional set of options as the second argument.
The series can then be used just like any other series, for example you would
use setData
method to provide data to the series.
class MyCustomSeries {
/* Class implementing the ICustomSeriesPaneView interface */
}
// Create an instantiated custom series.
const customSeriesInstance = new MyCustomSeries();
const chart = createChart(document.getElementById('container'));
const myCustomSeries = chart.addCustomSeries(customSeriesInstance, {
// options for the MyCustomSeries
customOption: 10,
});
const data = [
{ time: 1642425322, value: 123, customValue: 456 },
/* ... more data */
];
myCustomSeries.setData(data);
Drawing Primitives
Drawing primitives provide a more flexible approach to extending the charting capabilities of Lightweight Charts™️. They are attached to a specific series and can draw anywhere on the chart, including the main chart pane, price scales, and time scales.
Primitives can be used to create custom drawing tools or indicators, or to add entirely new visualizations to the chart. Primitives can be drawn at different levels in the visual stack, allowing for complex compositions of multiple primitives.
You can find a more detailed guide to developing series primitives in the Series Primitives article.
Adding a primitive to an existing series
A custom series primitive can be added to an existing series using the
attachPrimitive()
method
which expects an instantiated object implementing the
ISeriesPrimitive interface as the first
argument.
class MyCustomPrimitive {
/* Class implementing the ISeriesPrimitive interface */
}
// Create an instantiated series primitive.
const myCustomPrimitive = new MyCustomPrimitive();
const chart = createChart(document.getElementById('container'));
const lineSeries = chart.addLineSeries();
const data = [
{ time: 1642425322, value: 123 },
/* ... more data */
];
// Attach the primitive to the series
lineSeries.attachPrimitive(myCustomPrimitive);
Adding a primitive to the chart instead of a series
It is required that a drawing primitive is attached to series on the chart. In some cases, it might not make sense to attach a primitive to a specific series on the chart, for example if you are dynamically adding and removing series but would like a specific primitive to remain on the chart always. If this is the case then it is recommended to create an empty series (of any type) and attach the primitive to that instead.
This series wouldn't have data, and thus wouldn't have the concept of price values for the vertical positioning of items. In some cases, such as a watermark, this isn't an issue.
Example:
// ...
// Create an instantiated series primitive.
const myCustomPrimitive = new MyCustomPrimitive();
const chart = createChart(document.getElementById('container'));
// an empty series which won't ever have data
const chartSeries = chart.addLineSeries();
chartSeries.attachPrimitive(myCustomPrimitive);
Examples
We have a few example plugins within the plugin-examples
folder of the Lightweight Charts™️ repo: plugin-examples.
You can view a demo site for these plugin examples here: Plugin Examples Demos.