highcharts
Version:
JavaScript charting framework
36 lines (35 loc) • 541 B
JavaScript
/* *
*
* (c) 2009-2026 Highsoft AS
* Author: Torstein Hønsi
*
* Dot plot series type for Highcharts
*
* A commercial license may be required depending on use.
* See www.highcharts.com/license
*
*
* */
;
/* *
*
* API Options
*
* */
const DotPlotSeriesDefaults = {
itemPadding: 0.1,
marker: {
symbol: 'circle',
states: {
hover: {},
select: {}
}
},
slotsPerBar: void 0
};
/* *
*
* Default Export
*
* */
export default DotPlotSeriesDefaults;