You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sliders are not visibles when using datazoom echarts functionnality
Reduced test cases
To show the problem, we can run the project angular-boosted-starter and add this to the file "ods-charts.component.ts"
replace line 49 : tooltip: {},
by tooltip: { trigger: 'axis', axisPointer: { label: { formatter: function (params) { let oT = new Date(params.value); return oT.toLocaleDateString("fr-FR"); }, } } }, toolbox: { feature: { dataZoom: { yAxisIndex: 'none' }, restore: {}, } }, dataZoom: [ { type: 'inside', }, { type: 'slider', } ],
On this example of echarts, we see slider below the chart to control the zoom : apache echarts zoom
With ods-charts, we don't see the slider below the graph
What operating system(s) are you seeing the problem on?
Windows
What browser(s) are you seeing the problem on?
Chrome, Firefox, Microsoft Edge
What version of ODS Charts are you using?
0.1.0-alpha.4
The text was updated successfully, but these errors were encountered:
Prerequisites
Describe the issue
Sliders are not visibles when using datazoom echarts functionnality
Reduced test cases
To show the problem, we can run the project angular-boosted-starter and add this to the file "ods-charts.component.ts"
replace line 49 :
tooltip: {},
by
tooltip: { trigger: 'axis', axisPointer: { label: { formatter: function (params) { let oT = new Date(params.value); return oT.toLocaleDateString("fr-FR"); }, } } }, toolbox: { feature: { dataZoom: { yAxisIndex: 'none' }, restore: {}, } }, dataZoom: [ { type: 'inside', }, { type: 'slider', } ],
On this example of echarts, we see slider below the chart to control the zoom :
apache echarts zoom
With ods-charts, we don't see the slider below the graph
What operating system(s) are you seeing the problem on?
Windows
What browser(s) are you seeing the problem on?
Chrome, Firefox, Microsoft Edge
What version of ODS Charts are you using?
0.1.0-alpha.4
The text was updated successfully, but these errors were encountered: