123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _dataProvider = require("../../data/helper/dataProvider");
- var retrieveRawValue = _dataProvider.retrieveRawValue;
- var _format = require("../../util/format");
- var getTooltipMarker = _format.getTooltipMarker;
- var formatTpl = _format.formatTpl;
- var _model = require("../../util/model");
- var getTooltipRenderMode = _model.getTooltipRenderMode;
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var DIMENSION_LABEL_REG = /\{@(.+?)\}/g; // PENDING A little ugly
- var _default = {
- /**
- * Get params for formatter
- * @param {number} dataIndex
- * @param {string} [dataType]
- * @return {Object}
- */
- getDataParams: function (dataIndex, dataType) {
- var data = this.getData(dataType);
- var rawValue = this.getRawValue(dataIndex, dataType);
- var rawDataIndex = data.getRawIndex(dataIndex);
- var name = data.getName(dataIndex);
- var itemOpt = data.getRawDataItem(dataIndex);
- var color = data.getItemVisual(dataIndex, 'color');
- var borderColor = data.getItemVisual(dataIndex, 'borderColor');
- var tooltipModel = this.ecModel.getComponent('tooltip');
- var renderModeOption = tooltipModel && tooltipModel.get('renderMode');
- var renderMode = getTooltipRenderMode(renderModeOption);
- var mainType = this.mainType;
- var isSeries = mainType === 'series';
- var userOutput = data.userOutput;
- return {
- componentType: mainType,
- componentSubType: this.subType,
- componentIndex: this.componentIndex,
- seriesType: isSeries ? this.subType : null,
- seriesIndex: this.seriesIndex,
- seriesId: isSeries ? this.id : null,
- seriesName: isSeries ? this.name : null,
- name: name,
- dataIndex: rawDataIndex,
- data: itemOpt,
- dataType: dataType,
- value: rawValue,
- color: color,
- borderColor: borderColor,
- dimensionNames: userOutput ? userOutput.dimensionNames : null,
- encode: userOutput ? userOutput.encode : null,
- marker: getTooltipMarker({
- color: color,
- renderMode: renderMode
- }),
- // Param name list for mapping `a`, `b`, `c`, `d`, `e`
- $vars: ['seriesName', 'name', 'value']
- };
- },
- /**
- * Format label
- * @param {number} dataIndex
- * @param {string} [status='normal'] 'normal' or 'emphasis'
- * @param {string} [dataType]
- * @param {number} [dimIndex] Only used in some chart that
- * use formatter in different dimensions, like radar.
- * @param {string} [labelProp='label']
- * @return {string} If not formatter, return null/undefined
- */
- getFormattedLabel: function (dataIndex, status, dataType, dimIndex, labelProp) {
- status = status || 'normal';
- var data = this.getData(dataType);
- var itemModel = data.getItemModel(dataIndex);
- var params = this.getDataParams(dataIndex, dataType);
- if (dimIndex != null && params.value instanceof Array) {
- params.value = params.value[dimIndex];
- }
- var formatter = itemModel.get(status === 'normal' ? [labelProp || 'label', 'formatter'] : [status, labelProp || 'label', 'formatter']);
- if (typeof formatter === 'function') {
- params.status = status;
- params.dimensionIndex = dimIndex;
- return formatter(params);
- } else if (typeof formatter === 'string') {
- var str = formatTpl(formatter, params); // Support 'aaa{@[3]}bbb{@product}ccc'.
- // Do not support '}' in dim name util have to.
- return str.replace(DIMENSION_LABEL_REG, function (origin, dim) {
- var len = dim.length;
- if (dim.charAt(0) === '[' && dim.charAt(len - 1) === ']') {
- dim = +dim.slice(1, len - 1); // Also: '[]' => 0
- }
- return retrieveRawValue(data, dataIndex, dim);
- });
- }
- },
- /**
- * Get raw value in option
- * @param {number} idx
- * @param {string} [dataType]
- * @return {Array|number|string}
- */
- getRawValue: function (idx, dataType) {
- return retrieveRawValue(this.getData(dataType), idx);
- },
- /**
- * Should be implemented.
- * @param {number} dataIndex
- * @param {boolean} [multipleSeries=false]
- * @param {number} [dataType]
- * @return {string} tooltip string
- */
- formatTooltip: function () {// Empty function
- }
- };
- module.exports = _default;
|