@antv/g2plot
Version:
An interactive and responsive charting library
30 lines • 849 B
JavaScript
import { Plot } from '../../core/plot';
import { deepAssign } from '../../utils';
/** 词云图 color 通道映射字段 */
export var WORD_CLOUD_COLOR_FIELD = 'color';
/**
* 词云图 默认配置项
*/
export var DEFAULT_OPTIONS = deepAssign({}, Plot.getDefaultOptions(), {
timeInterval: 2000,
legend: false,
tooltip: {
showTitle: false,
showMarkers: false,
showCrosshairs: false,
fields: ['text', 'value', WORD_CLOUD_COLOR_FIELD],
formatter: function (datum) {
return { name: datum.text, value: datum.value };
},
},
wordStyle: {
fontFamily: 'Verdana',
fontWeight: 'normal',
padding: 1,
fontSize: [12, 60],
rotation: [0, 90],
rotationSteps: 2,
rotateRatio: 0.5,
},
});
//# sourceMappingURL=constant.js.map