| | |
| | | itemName: { style: { fill: plot.color } } |
| | | }) |
| | | |
| | | chart.tooltip({ |
| | | showTitle: false, |
| | | showCrosshairs: true, |
| | | crosshairs: { |
| | | type: 'xy', |
| | | } |
| | | }) |
| | | if (plot.tooltip !== 'true') { |
| | | chart.tooltip(false) |
| | | } else { |
| | | chart.tooltip({ |
| | | showTitle: false, |
| | | showCrosshairs: true, |
| | | crosshairs: { |
| | | type: 'xy', |
| | | } |
| | | }) |
| | | } |
| | | |
| | | chart |
| | | .point() |
| | | .position(`${plot.Xaxis}*${plot.Yaxis}`) |
| | |
| | | .style({ |
| | | fillOpacity: 0.85 |
| | | }) |
| | | chart.interaction('legend-highlight'); |
| | | if (plot.interaction && plot.interaction.length) { |
| | | plot.interaction.forEach(t => { |
| | | chart.interaction(t) |
| | | }) |
| | | } |
| | | chart.render() |
| | | } |
| | | |