123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- /**
- * @license Highcharts JS v9.1.1 (2021-06-04)
- *
- * Dot plot series type for Highcharts
- *
- * (c) 2010-2021 Torstein Honsi
- *
- * License: www.highcharts.com/license
- */
- 'use strict';
- (function (factory) {
- if (typeof module === 'object' && module.exports) {
- factory['default'] = factory;
- module.exports = factory;
- } else if (typeof define === 'function' && define.amd) {
- define('highcharts/modules/dotplot', ['highcharts'], function (Highcharts) {
- factory(Highcharts);
- factory.Highcharts = Highcharts;
- return factory;
- });
- } else {
- factory(typeof Highcharts !== 'undefined' ? Highcharts : undefined);
- }
- }(function (Highcharts) {
- var _modules = Highcharts ? Highcharts._modules : {};
- function _registerModule(obj, path, args, fn) {
- if (!obj.hasOwnProperty(path)) {
- obj[path] = fn.apply(null, args);
- }
- }
- _registerModule(_modules, 'Series/DotPlot/DotPlotSeries.js', [_modules['Series/Column/ColumnSeries.js'], _modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (ColumnSeries, SeriesRegistry, U) {
- /* *
- *
- * (c) 2009-2021 Torstein Honsi
- *
- * Dot plot series type for Highcharts
- *
- * License: www.highcharts.com/license
- *
- * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
- *
- * */
- /**
- * @private
- * @todo
- * - Check update, remove etc.
- * - Custom icons like persons, carts etc. Either as images, font icons or
- * Highcharts symbols.
- */
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d,
- b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d,
- b) { d.__proto__ = b; }) ||
- function (d,
- b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- var extend = U.extend,
- merge = U.merge,
- objectEach = U.objectEach,
- pick = U.pick;
- /* *
- *
- * Class
- *
- * */
- /**
- * @private
- * @class
- * @name Highcharts.seriesTypes.dotplot
- *
- * @augments Highcharts.Series
- */
- var DotPlotSeries = /** @class */ (function (_super) {
- __extends(DotPlotSeries, _super);
- function DotPlotSeries() {
- /* *
- *
- * Static Properties
- *
- * */
- var _this = _super !== null && _super.apply(this,
- arguments) || this;
- /* *
- *
- * Properties
- *
- * */
- _this.data = void 0;
- _this.options = void 0;
- _this.points = void 0;
- return _this;
- }
- /* *
- *
- * Functions
- *
- * */
- DotPlotSeries.prototype.drawPoints = function () {
- var series = this,
- renderer = series.chart.renderer,
- seriesMarkerOptions = this.options.marker,
- itemPaddingTranslated = this.yAxis.transA *
- series.options.itemPadding,
- borderWidth = this.borderWidth,
- crisp = borderWidth % 2 ? 0.5 : 1;
- this.points.forEach(function (point) {
- var yPos,
- attr,
- graphics,
- itemY,
- pointAttr,
- pointMarkerOptions = point.marker || {},
- symbol = (pointMarkerOptions.symbol ||
- seriesMarkerOptions.symbol),
- radius = pick(pointMarkerOptions.radius,
- seriesMarkerOptions.radius),
- size,
- yTop,
- isSquare = symbol !== 'rect',
- x,
- y;
- point.graphics = graphics = point.graphics || {};
- pointAttr = point.pointAttr ?
- (point.pointAttr[point.selected ? 'selected' : ''] ||
- series.pointAttr['']) :
- series.pointAttribs(point, point.selected && 'select');
- delete pointAttr.r;
- if (series.chart.styledMode) {
- delete pointAttr.stroke;
- delete pointAttr['stroke-width'];
- }
- if (point.y !== null) {
- if (!point.graphic) {
- point.graphic = renderer.g('point').add(series.group);
- }
- itemY = point.y;
- yTop = pick(point.stackY, point.y);
- size = Math.min(point.pointWidth, series.yAxis.transA - itemPaddingTranslated);
- for (yPos = yTop; yPos > yTop - point.y; yPos--) {
- x = point.barX + (isSquare ?
- point.pointWidth / 2 - size / 2 :
- 0);
- y = series.yAxis.toPixels(yPos, true) +
- itemPaddingTranslated / 2;
- if (series.options.crisp) {
- x = Math.round(x) - crisp;
- y = Math.round(y) + crisp;
- }
- attr = {
- x: x,
- y: y,
- width: Math.round(isSquare ? size : point.pointWidth),
- height: Math.round(size),
- r: radius
- };
- if (graphics[itemY]) {
- graphics[itemY].animate(attr);
- }
- else {
- graphics[itemY] = renderer.symbol(symbol)
- .attr(extend(attr, pointAttr))
- .add(point.graphic);
- }
- graphics[itemY].isActive = true;
- itemY--;
- }
- }
- objectEach(graphics, function (graphic, key) {
- if (!graphic.isActive) {
- graphic.destroy();
- delete graphic[key];
- }
- else {
- graphic.isActive = false;
- }
- });
- });
- };
- DotPlotSeries.defaultOptions = merge(ColumnSeries.defaultOptions, {
- itemPadding: 0.2,
- marker: {
- symbol: 'circle',
- states: {
- hover: {},
- select: {}
- }
- }
- });
- return DotPlotSeries;
- }(ColumnSeries));
- extend(DotPlotSeries.prototype, {
- markerAttribs: void 0
- });
- SeriesRegistry.registerSeriesType('dotplot', DotPlotSeries);
- /* *
- *
- * Default Export
- *
- * */
- return DotPlotSeries;
- });
- _registerModule(_modules, 'masters/modules/dotplot.src.js', [], function () {
- });
- }));
|