For initial declarative chart setup. Download as ZIP or JSON.
Highcharts.setOptions({
});
Highcharts.stockChart({
});
For modifying the chart at runtime. See the class reference.
These pages outline the chart configuration options, and the methods and properties of Highcharts objects.
Feel free to search this API through the search bar or the navigation tree in the sidebar.
The Point and Figure series represents changes in stock price movements,
without focusing on the time and volume. Each data point is created when the
boxSize criteria is met. Opposite column of points gets created only when
the reversalAmount threshold is met.
Configuration options for the series are given in three levels:
pointandfigure series are defined in
plotOptions.pointandfigure.Highcharts.chart('container', {
plotOptions: {
series: {
// general options for all series
},
pointandfigure: {
// shared options for all pointandfigure series
}
},
series: [{
// specific options for this series instance
type: 'pointandfigure'
}]
});
TypeScript:
type property.if (chart.options.series?.[0]?.type === pointandfigure) {
// code specific to the pointandfigure series
}
Copyright © 2026, Highsoft AS. All rights reserved.
Highcharts Stock v12.5.0 - Generated from branch master (commit e36cc052f0), on Mon Jan 12 2026 11:22:25 GMT+0100 (Central European Standard Time)