From 615ece9bbb5117fe007c91d1cc273ba9f3291f5b Mon Sep 17 00:00:00 2001 From: oahzeved Date: Sun, 26 Apr 2020 18:31:18 +0800 Subject: [PATCH] cursor for chart --- src/main/webapp/assets/js/charts/charts.jsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/assets/js/charts/charts.jsx b/src/main/webapp/assets/js/charts/charts.jsx index cceb328f5..90017cc72 100644 --- a/src/main/webapp/assets/js/charts/charts.jsx +++ b/src/main/webapp/assets/js/charts/charts.jsx @@ -698,7 +698,8 @@ class ChartRadar extends BaseChart { // }, lineStyle: { normal: { width: 2 }, - emphasis: { width: 3 } + emphasis: { width: 3 }, + cursor: 'default', }, data: data.series }] @@ -745,7 +746,7 @@ class ChartScatter extends BaseChart { axisLine: { lineStyle: { color: '#ddd' } }, - scale: false + scale: false, } const seriesData = [] @@ -761,6 +762,7 @@ class ChartScatter extends BaseChart { s = Math.max(s, 8) return s }, + cursor: 'default' }) })