For initial declarative chart setup. Download as ZIP or JSON.
Highcharts.setOptions({
});
Highcharts.mapChart({
});
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.
A flowmap series is a series laid out on top of a map series allowing to display route paths (e.g. flight or ship routes) or flows on a map. It creates a link between two points on a map chart.
Configuration options for the series are given in three levels:
flowmap
series are defined in
plotOptions.flowmap.Highcharts.chart('container', {
plotOptions: {
series: {
// general options for all series
},
flowmap: {
// shared options for all flowmap series
}
},
series: [{
// specific options for this series instance
type: 'flowmap'
}]
});
TypeScript:
type
property.if (chart.options.series?.[0]?.type === flowmap) {
// code specific to the flowmap series
}
Copyright © 2024, Highsoft AS. All rights reserved.
Highcharts Maps v12.1.1 - Generated from branch master (commit 590c1a9a2d), on Fri Dec 20 2024 08:18:19 GMT+0100 (Central European Standard Time)