highcharts
Version:
JavaScript charting framework
42 lines (41 loc) • 1.15 kB
JavaScript
/* *
*
* (c) 2010-2024 Torstein Honsi, Magdalena Gut
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
import PictorialUtilities from './PictorialUtilities.js';
const ColumnPoint = SeriesRegistry.seriesTypes.column.prototype.pointClass;
const { rescalePatternFill, getStackMetrics } = PictorialUtilities;
/* *
*
* Class
*
* */
class PictorialPoint extends ColumnPoint {
/* *
*
* Functions
*
* */
setState() {
const point = this;
super.setState.apply(point, arguments);
const series = point.series, paths = series.options.paths;
if (point.graphic && point.shapeArgs && paths) {
const shape = paths[point.index %
paths.length];
rescalePatternFill(point.graphic, getStackMetrics(series.yAxis, shape).height, point.shapeArgs.width || 0, point.shapeArgs.height || Infinity, point.series.options.borderWidth || 0);
}
}
}
/* *
*
* Export Default
*
* */
export default PictorialPoint;