| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668 |
- var _config = require("../../config");
- var __DEV__ = _config.__DEV__;
- var zrUtil = require("zrender/lib/core/util");
- var SymbolDraw = require("../helper/SymbolDraw");
- var SymbolClz = require("../helper/Symbol");
- var lineAnimationDiff = require("./lineAnimationDiff");
- var graphic = require("../../util/graphic");
- var modelUtil = require("../../util/model");
- var _poly = require("./poly");
- var Polyline = _poly.Polyline;
- var Polygon = _poly.Polygon;
- var ChartView = require("../../view/Chart");
- // FIXME step not support polar
- function isPointsSame(points1, points2) {
- if (points1.length !== points2.length) {
- return;
- }
- for (var i = 0; i < points1.length; i++) {
- var p1 = points1[i];
- var p2 = points2[i];
- if (p1[0] !== p2[0] || p1[1] !== p2[1]) {
- return;
- }
- }
- return true;
- }
- function getSmooth(smooth) {
- return typeof smooth === 'number' ? smooth : smooth ? 0.3 : 0;
- }
- function getAxisExtentWithGap(axis) {
- var extent = axis.getGlobalExtent();
- if (axis.onBand) {
- // Remove extra 1px to avoid line miter in clipped edge
- var halfBandWidth = axis.getBandWidth() / 2 - 1;
- var dir = extent[1] > extent[0] ? 1 : -1;
- extent[0] += dir * halfBandWidth;
- extent[1] -= dir * halfBandWidth;
- }
- return extent;
- }
- function sign(val) {
- return val >= 0 ? 1 : -1;
- }
- /**
- * @param {module:echarts/coord/cartesian/Cartesian2D|module:echarts/coord/polar/Polar} coordSys
- * @param {module:echarts/data/List} data
- * @param {Array.<Array.<number>>} points
- * @private
- */
- function getStackedOnPoints(coordSys, data) {
- var baseAxis = coordSys.getBaseAxis();
- var valueAxis = coordSys.getOtherAxis(baseAxis);
- var valueStart = 0;
- if (!baseAxis.onZero) {
- var extent = valueAxis.scale.getExtent();
- if (extent[0] > 0) {
- // Both positive
- valueStart = extent[0];
- } else if (extent[1] < 0) {
- // Both negative
- valueStart = extent[1];
- } // If is one positive, and one negative, onZero shall be true
- }
- var valueDim = valueAxis.dim;
- var baseDataOffset = valueDim === 'x' || valueDim === 'radius' ? 1 : 0;
- return data.mapArray([valueDim], function (val, idx) {
- var stackedOnSameSign;
- var stackedOn = data.stackedOn; // Find first stacked value with same sign
- while (stackedOn && sign(stackedOn.get(valueDim, idx)) === sign(val)) {
- stackedOnSameSign = stackedOn;
- break;
- }
- var stackedData = [];
- stackedData[baseDataOffset] = data.get(baseAxis.dim, idx);
- stackedData[1 - baseDataOffset] = stackedOnSameSign ? stackedOnSameSign.get(valueDim, idx, true) : valueStart;
- return coordSys.dataToPoint(stackedData);
- }, true);
- }
- function createGridClipShape(cartesian, hasAnimation, seriesModel) {
- var xExtent = getAxisExtentWithGap(cartesian.getAxis('x'));
- var yExtent = getAxisExtentWithGap(cartesian.getAxis('y'));
- var isHorizontal = cartesian.getBaseAxis().isHorizontal();
- var x = Math.min(xExtent[0], xExtent[1]);
- var y = Math.min(yExtent[0], yExtent[1]);
- var width = Math.max(xExtent[0], xExtent[1]) - x;
- var height = Math.max(yExtent[0], yExtent[1]) - y;
- var lineWidth = seriesModel.get('lineStyle.normal.width') || 2; // Expand clip shape to avoid clipping when line value exceeds axis
- var expandSize = seriesModel.get('clipOverflow') ? lineWidth / 2 : Math.max(width, height);
- if (isHorizontal) {
- y -= expandSize;
- height += expandSize * 2;
- } else {
- x -= expandSize;
- width += expandSize * 2;
- }
- var clipPath = new graphic.Rect({
- shape: {
- x: x,
- y: y,
- width: width,
- height: height
- }
- });
- if (hasAnimation) {
- clipPath.shape[isHorizontal ? 'width' : 'height'] = 0;
- graphic.initProps(clipPath, {
- shape: {
- width: width,
- height: height
- }
- }, seriesModel);
- }
- return clipPath;
- }
- function createPolarClipShape(polar, hasAnimation, seriesModel) {
- var angleAxis = polar.getAngleAxis();
- var radiusAxis = polar.getRadiusAxis();
- var radiusExtent = radiusAxis.getExtent();
- var angleExtent = angleAxis.getExtent();
- var RADIAN = Math.PI / 180;
- var clipPath = new graphic.Sector({
- shape: {
- cx: polar.cx,
- cy: polar.cy,
- r0: radiusExtent[0],
- r: radiusExtent[1],
- startAngle: -angleExtent[0] * RADIAN,
- endAngle: -angleExtent[1] * RADIAN,
- clockwise: angleAxis.inverse
- }
- });
- if (hasAnimation) {
- clipPath.shape.endAngle = -angleExtent[0] * RADIAN;
- graphic.initProps(clipPath, {
- shape: {
- endAngle: -angleExtent[1] * RADIAN
- }
- }, seriesModel);
- }
- return clipPath;
- }
- function createClipShape(coordSys, hasAnimation, seriesModel) {
- return coordSys.type === 'polar' ? createPolarClipShape(coordSys, hasAnimation, seriesModel) : createGridClipShape(coordSys, hasAnimation, seriesModel);
- }
- function turnPointsIntoStep(points, coordSys, stepTurnAt) {
- var baseAxis = coordSys.getBaseAxis();
- var baseIndex = baseAxis.dim === 'x' || baseAxis.dim === 'radius' ? 0 : 1;
- var stepPoints = [];
- for (var i = 0; i < points.length - 1; i++) {
- var nextPt = points[i + 1];
- var pt = points[i];
- stepPoints.push(pt);
- var stepPt = [];
- switch (stepTurnAt) {
- case 'end':
- stepPt[baseIndex] = nextPt[baseIndex];
- stepPt[1 - baseIndex] = pt[1 - baseIndex]; // default is start
- stepPoints.push(stepPt);
- break;
- case 'middle':
- // default is start
- var middle = (pt[baseIndex] + nextPt[baseIndex]) / 2;
- var stepPt2 = [];
- stepPt[baseIndex] = stepPt2[baseIndex] = middle;
- stepPt[1 - baseIndex] = pt[1 - baseIndex];
- stepPt2[1 - baseIndex] = nextPt[1 - baseIndex];
- stepPoints.push(stepPt);
- stepPoints.push(stepPt2);
- break;
- default:
- stepPt[baseIndex] = pt[baseIndex];
- stepPt[1 - baseIndex] = nextPt[1 - baseIndex]; // default is start
- stepPoints.push(stepPt);
- }
- } // Last points
- points[i] && stepPoints.push(points[i]);
- return stepPoints;
- }
- function getVisualGradient(data, coordSys) {
- var visualMetaList = data.getVisual('visualMeta');
- if (!visualMetaList || !visualMetaList.length || !data.count()) {
- // When data.count() is 0, gradient range can not be calculated.
- return;
- }
- var visualMeta;
- for (var i = visualMetaList.length - 1; i >= 0; i--) {
- // Can only be x or y
- if (visualMetaList[i].dimension < 2) {
- visualMeta = visualMetaList[i];
- break;
- }
- }
- if (!visualMeta || coordSys.type !== 'cartesian2d') {
- return;
- } // If the area to be rendered is bigger than area defined by LinearGradient,
- // the canvas spec prescribes that the color of the first stop and the last
- // stop should be used. But if two stops are added at offset 0, in effect
- // browsers use the color of the second stop to render area outside
- // LinearGradient. So we can only infinitesimally extend area defined in
- // LinearGradient to render `outerColors`.
- var dimension = visualMeta.dimension;
- var dimName = data.dimensions[dimension];
- var axis = coordSys.getAxis(dimName); // dataToCoor mapping may not be linear, but must be monotonic.
- var colorStops = zrUtil.map(visualMeta.stops, function (stop) {
- return {
- coord: axis.toGlobalCoord(axis.dataToCoord(stop.value)),
- color: stop.color
- };
- });
- var stopLen = colorStops.length;
- var outerColors = visualMeta.outerColors.slice();
- if (stopLen && colorStops[0].coord > colorStops[stopLen - 1].coord) {
- colorStops.reverse();
- outerColors.reverse();
- }
- var tinyExtent = 10; // Arbitrary value: 10px
- var minCoord = colorStops[0].coord - tinyExtent;
- var maxCoord = colorStops[stopLen - 1].coord + tinyExtent;
- var coordSpan = maxCoord - minCoord;
- if (coordSpan < 1e-3) {
- return 'transparent';
- }
- zrUtil.each(colorStops, function (stop) {
- stop.offset = (stop.coord - minCoord) / coordSpan;
- });
- colorStops.push({
- offset: stopLen ? colorStops[stopLen - 1].offset : 0.5,
- color: outerColors[1] || 'transparent'
- });
- colorStops.unshift({
- // notice colorStops.length have been changed.
- offset: stopLen ? colorStops[0].offset : 0.5,
- color: outerColors[0] || 'transparent'
- }); // zrUtil.each(colorStops, function (colorStop) {
- // // Make sure each offset has rounded px to avoid not sharp edge
- // colorStop.offset = (Math.round(colorStop.offset * (end - start) + start) - start) / (end - start);
- // });
- var gradient = new graphic.LinearGradient(0, 0, 0, 0, colorStops, true);
- gradient[dimName] = minCoord;
- gradient[dimName + '2'] = maxCoord;
- return gradient;
- }
- var _default = ChartView.extend({
- type: 'line',
- init: function () {
- var lineGroup = new graphic.Group();
- var symbolDraw = new SymbolDraw();
- this.group.add(symbolDraw.group);
- this._symbolDraw = symbolDraw;
- this._lineGroup = lineGroup;
- },
- render: function (seriesModel, ecModel, api) {
- var coordSys = seriesModel.coordinateSystem;
- var group = this.group;
- var data = seriesModel.getData();
- var lineStyleModel = seriesModel.getModel('lineStyle.normal');
- var areaStyleModel = seriesModel.getModel('areaStyle.normal');
- var points = data.mapArray(data.getItemLayout, true);
- var isCoordSysPolar = coordSys.type === 'polar';
- var prevCoordSys = this._coordSys;
- var symbolDraw = this._symbolDraw;
- var polyline = this._polyline;
- var polygon = this._polygon;
- var lineGroup = this._lineGroup;
- var hasAnimation = seriesModel.get('animation');
- var isAreaChart = !areaStyleModel.isEmpty();
- var stackedOnPoints = getStackedOnPoints(coordSys, data);
- var showSymbol = seriesModel.get('showSymbol');
- var isSymbolIgnore = showSymbol && !isCoordSysPolar && !seriesModel.get('showAllSymbol') && this._getSymbolIgnoreFunc(data, coordSys); // Remove temporary symbols
- var oldData = this._data;
- oldData && oldData.eachItemGraphicEl(function (el, idx) {
- if (el.__temp) {
- group.remove(el);
- oldData.setItemGraphicEl(idx, null);
- }
- }); // Remove previous created symbols if showSymbol changed to false
- if (!showSymbol) {
- symbolDraw.remove();
- }
- group.add(lineGroup); // FIXME step not support polar
- var step = !isCoordSysPolar && seriesModel.get('step'); // Initialization animation or coordinate system changed
- if (!(polyline && prevCoordSys.type === coordSys.type && step === this._step)) {
- showSymbol && symbolDraw.updateData(data, isSymbolIgnore);
- if (step) {
- // TODO If stacked series is not step
- points = turnPointsIntoStep(points, coordSys, step);
- stackedOnPoints = turnPointsIntoStep(stackedOnPoints, coordSys, step);
- }
- polyline = this._newPolyline(points, coordSys, hasAnimation);
- if (isAreaChart) {
- polygon = this._newPolygon(points, stackedOnPoints, coordSys, hasAnimation);
- }
- lineGroup.setClipPath(createClipShape(coordSys, true, seriesModel));
- } else {
- if (isAreaChart && !polygon) {
- // If areaStyle is added
- polygon = this._newPolygon(points, stackedOnPoints, coordSys, hasAnimation);
- } else if (polygon && !isAreaChart) {
- // If areaStyle is removed
- lineGroup.remove(polygon);
- polygon = this._polygon = null;
- } // Update clipPath
- lineGroup.setClipPath(createClipShape(coordSys, false, seriesModel)); // Always update, or it is wrong in the case turning on legend
- // because points are not changed
- showSymbol && symbolDraw.updateData(data, isSymbolIgnore); // Stop symbol animation and sync with line points
- // FIXME performance?
- data.eachItemGraphicEl(function (el) {
- el.stopAnimation(true);
- }); // In the case data zoom triggerred refreshing frequently
- // Data may not change if line has a category axis. So it should animate nothing
- if (!isPointsSame(this._stackedOnPoints, stackedOnPoints) || !isPointsSame(this._points, points)) {
- if (hasAnimation) {
- this._updateAnimation(data, stackedOnPoints, coordSys, api, step);
- } else {
- // Not do it in update with animation
- if (step) {
- // TODO If stacked series is not step
- points = turnPointsIntoStep(points, coordSys, step);
- stackedOnPoints = turnPointsIntoStep(stackedOnPoints, coordSys, step);
- }
- polyline.setShape({
- points: points
- });
- polygon && polygon.setShape({
- points: points,
- stackedOnPoints: stackedOnPoints
- });
- }
- }
- }
- var visualColor = getVisualGradient(data, coordSys) || data.getVisual('color');
- polyline.useStyle(zrUtil.defaults( // Use color in lineStyle first
- lineStyleModel.getLineStyle(), {
- fill: 'none',
- stroke: visualColor,
- lineJoin: 'bevel'
- }));
- var smooth = seriesModel.get('smooth');
- smooth = getSmooth(seriesModel.get('smooth'));
- polyline.setShape({
- smooth: smooth,
- smoothMonotone: seriesModel.get('smoothMonotone'),
- connectNulls: seriesModel.get('connectNulls')
- });
- if (polygon) {
- var stackedOn = data.stackedOn;
- var stackedOnSmooth = 0;
- polygon.useStyle(zrUtil.defaults(areaStyleModel.getAreaStyle(), {
- fill: visualColor,
- opacity: 0.7,
- lineJoin: 'bevel'
- }));
- if (stackedOn) {
- var stackedOnSeries = stackedOn.hostModel;
- stackedOnSmooth = getSmooth(stackedOnSeries.get('smooth'));
- }
- polygon.setShape({
- smooth: smooth,
- stackedOnSmooth: stackedOnSmooth,
- smoothMonotone: seriesModel.get('smoothMonotone'),
- connectNulls: seriesModel.get('connectNulls')
- });
- }
- this._data = data; // Save the coordinate system for transition animation when data changed
- this._coordSys = coordSys;
- this._stackedOnPoints = stackedOnPoints;
- this._points = points;
- this._step = step;
- },
- dispose: function () {},
- highlight: function (seriesModel, ecModel, api, payload) {
- var data = seriesModel.getData();
- var dataIndex = modelUtil.queryDataIndex(data, payload);
- if (!(dataIndex instanceof Array) && dataIndex != null && dataIndex >= 0) {
- var symbol = data.getItemGraphicEl(dataIndex);
- if (!symbol) {
- // Create a temporary symbol if it is not exists
- var pt = data.getItemLayout(dataIndex);
- if (!pt) {
- // Null data
- return;
- }
- symbol = new SymbolClz(data, dataIndex);
- symbol.position = pt;
- symbol.setZ(seriesModel.get('zlevel'), seriesModel.get('z'));
- symbol.ignore = isNaN(pt[0]) || isNaN(pt[1]);
- symbol.__temp = true;
- data.setItemGraphicEl(dataIndex, symbol); // Stop scale animation
- symbol.stopSymbolAnimation(true);
- this.group.add(symbol);
- }
- symbol.highlight();
- } else {
- // Highlight whole series
- ChartView.prototype.highlight.call(this, seriesModel, ecModel, api, payload);
- }
- },
- downplay: function (seriesModel, ecModel, api, payload) {
- var data = seriesModel.getData();
- var dataIndex = modelUtil.queryDataIndex(data, payload);
- if (dataIndex != null && dataIndex >= 0) {
- var symbol = data.getItemGraphicEl(dataIndex);
- if (symbol) {
- if (symbol.__temp) {
- data.setItemGraphicEl(dataIndex, null);
- this.group.remove(symbol);
- } else {
- symbol.downplay();
- }
- }
- } else {
- // FIXME
- // can not downplay completely.
- // Downplay whole series
- ChartView.prototype.downplay.call(this, seriesModel, ecModel, api, payload);
- }
- },
- /**
- * @param {module:zrender/container/Group} group
- * @param {Array.<Array.<number>>} points
- * @private
- */
- _newPolyline: function (points) {
- var polyline = this._polyline; // Remove previous created polyline
- if (polyline) {
- this._lineGroup.remove(polyline);
- }
- polyline = new Polyline({
- shape: {
- points: points
- },
- silent: true,
- z2: 10
- });
- this._lineGroup.add(polyline);
- this._polyline = polyline;
- return polyline;
- },
- /**
- * @param {module:zrender/container/Group} group
- * @param {Array.<Array.<number>>} stackedOnPoints
- * @param {Array.<Array.<number>>} points
- * @private
- */
- _newPolygon: function (points, stackedOnPoints) {
- var polygon = this._polygon; // Remove previous created polygon
- if (polygon) {
- this._lineGroup.remove(polygon);
- }
- polygon = new Polygon({
- shape: {
- points: points,
- stackedOnPoints: stackedOnPoints
- },
- silent: true
- });
- this._lineGroup.add(polygon);
- this._polygon = polygon;
- return polygon;
- },
- /**
- * @private
- */
- _getSymbolIgnoreFunc: function (data, coordSys) {
- var categoryAxis = coordSys.getAxesByScale('ordinal')[0]; // `getLabelInterval` is provided by echarts/component/axis
- if (categoryAxis && categoryAxis.isLabelIgnored) {
- return zrUtil.bind(categoryAxis.isLabelIgnored, categoryAxis);
- }
- },
- /**
- * @private
- */
- // FIXME Two value axis
- _updateAnimation: function (data, stackedOnPoints, coordSys, api, step) {
- var polyline = this._polyline;
- var polygon = this._polygon;
- var seriesModel = data.hostModel;
- var diff = lineAnimationDiff(this._data, data, this._stackedOnPoints, stackedOnPoints, this._coordSys, coordSys);
- var current = diff.current;
- var stackedOnCurrent = diff.stackedOnCurrent;
- var next = diff.next;
- var stackedOnNext = diff.stackedOnNext;
- if (step) {
- // TODO If stacked series is not step
- current = turnPointsIntoStep(diff.current, coordSys, step);
- stackedOnCurrent = turnPointsIntoStep(diff.stackedOnCurrent, coordSys, step);
- next = turnPointsIntoStep(diff.next, coordSys, step);
- stackedOnNext = turnPointsIntoStep(diff.stackedOnNext, coordSys, step);
- } // `diff.current` is subset of `current` (which should be ensured by
- // turnPointsIntoStep), so points in `__points` can be updated when
- // points in `current` are update during animation.
- polyline.shape.__points = diff.current;
- polyline.shape.points = current;
- graphic.updateProps(polyline, {
- shape: {
- points: next
- }
- }, seriesModel);
- if (polygon) {
- polygon.setShape({
- points: current,
- stackedOnPoints: stackedOnCurrent
- });
- graphic.updateProps(polygon, {
- shape: {
- points: next,
- stackedOnPoints: stackedOnNext
- }
- }, seriesModel);
- }
- var updatedDataInfo = [];
- var diffStatus = diff.status;
- for (var i = 0; i < diffStatus.length; i++) {
- var cmd = diffStatus[i].cmd;
- if (cmd === '=') {
- var el = data.getItemGraphicEl(diffStatus[i].idx1);
- if (el) {
- updatedDataInfo.push({
- el: el,
- ptIdx: i // Index of points
- });
- }
- }
- }
- if (polyline.animators && polyline.animators.length) {
- polyline.animators[0].during(function () {
- for (var i = 0; i < updatedDataInfo.length; i++) {
- var el = updatedDataInfo[i].el;
- el.attr('position', polyline.shape.__points[updatedDataInfo[i].ptIdx]);
- }
- });
- }
- },
- remove: function (ecModel) {
- var group = this.group;
- var oldData = this._data;
- this._lineGroup.removeAll();
- this._symbolDraw.remove(true); // Remove temporary created elements when highlighting
- oldData && oldData.eachItemGraphicEl(function (el, idx) {
- if (el.__temp) {
- group.remove(el);
- oldData.setItemGraphicEl(idx, null);
- }
- });
- this._polyline = this._polygon = this._coordSys = this._points = this._stackedOnPoints = this._data = null;
- }
- });
- module.exports = _default;
|