36 lines
795 B
Plaintext
36 lines
795 B
Plaintext
// FIXME Better way to pack data in graphic element
|
|
define(function (require) {
|
|
|
|
require('./tooltip/TooltipModel');
|
|
|
|
require('./tooltip/TooltipView');
|
|
|
|
// Show tip action
|
|
/**
|
|
* @action
|
|
* @property {string} type
|
|
* @property {number} seriesIndex
|
|
* @property {number} dataIndex
|
|
* @property {number} [x]
|
|
* @property {number} [y]
|
|
*/
|
|
require('../echarts').registerAction(
|
|
{
|
|
type: 'showTip',
|
|
event: 'showTip',
|
|
update: 'none'
|
|
},
|
|
// noop
|
|
function () {}
|
|
);
|
|
// Hide tip action
|
|
require('../echarts').registerAction(
|
|
{
|
|
type: 'hideTip',
|
|
event: 'hideTip',
|
|
update: 'none'
|
|
},
|
|
// noop
|
|
function () {}
|
|
);
|
|
}); |