question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

dataZoom[i]-slider.handleStyle.color is not working

See original GitHub issue

I am using echarts version “4.0.4”.

When i tried to change color of data-zoom slider handle, it’s not working.

My data-zoom array is like below.

DataZoomArray = [
    { type: 'inside', start: 50, end: 100, yAxisIndex: 0 },
    {
        show: true, filterMode: 'empty',
        yAxisIndex: 0,
        handleStyle: {
            color: '#fff'
        }
    }
];

I think it’s bug. every other properties of handleStyle is working fine.

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:1
  • Comments:8 (1 by maintainers)

github_iconTop GitHub Comments

1reaction
zhanghuanchongcommented, Jan 21, 2020

I tried with handleColor which works with v4.6.0.

    dataZoom: [
          {
            type: 'inside',
            realtime: true,
            rangeMode: 'value',
            startValue: 1,
            endValue: 10
          },
          {
            show: true,
            realtime: true,
            rangeMode: 'value',
            startValue: 1,
            endValue: 10,
            fillerColor: '#ff0000',
            handleColor: '#990000'
          }
        ]
0reactions
yy-richardcommented, Oct 25, 2022

like this

Read more comments on GitHub >

github_iconTop Results From Across the Web

dataZoom[i]-slider.handleStyle.color is not working · Issue #7876
I am using echarts version "4.0.4". When i tried to change color of data-zoom slider handle, it's not working. My data-zoom array is...
Read more >
Echarts dataZoom slider handleIcon shape not working
You misinterpreted the documentation. The method handleIcon expects a string of path but not some shape identifier.
Read more >
ECharts Document
Mouse Events Handling ... ECharts support regular mouse events, which includes 'click' , 'dblclick' , 'mousedown' , 'mousemove' , 'mouseup' , 'mouseover' ,...
Read more >
Documentation - pyecharts-en - Read the Docs
legend:legend component has different symbol, colour and name, and provide the interactive clicking functions to show or hide its associated data series. label ......
Read more >
Examples - Apache ECharts
Line Style and Item Style. JS TS. Line Chart in Cartesian Coordinate ... Tooltip and DataZoom on Mobile ... Master Painter Color Choices...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found