Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

阶梯图会变成折线图 #3645

Closed
mattxu-zz opened this issue Jul 15, 2016 · 4 comments
Closed

阶梯图会变成折线图 #3645

mattxu-zz opened this issue Jul 15, 2016 · 4 comments
Labels

Comments

@mattxu-zz
Copy link

mattxu-zz commented Jul 15, 2016

问题简述 (One-line summary)

我用echart做了一个阶梯图,用来显示0和1,即Bool值的图,但是显示一会后会自动变成折线图,目前发现稳定会变的是按F12进入调试模式的时候。

版本及环境 (Version & Environment)

  • ECharts 版本 (ECharts version): 3.2.2
  • 浏览器类型和版本 (Browser version): Chrome
  • 操作系统类型和版本 (OS Version): win10

可能哪里有问题 (What went wrong)

样式问题?

ECharts配置项 (ECharts option)

option = {
 "title": {
                "subtext": "",
                "x": "center"
            },
            "tooltip": {


                "trigger": "axis",
                "axisPointer": {
                    "animation": false
                }
            },
            "toolbox": {
                "feature": {
                    "saveAsImage": {}
                }
            },
            "xAxis": [
                {
                    "type": "category",
                    "boundaryGap": false,
                    "axisLine": { "onZero": true },
                    "splitLine": {"show":false},
                    "data": [
                    ]
                }
            ],
            "series": [
                {
                    "type": "line",
                    "step": "end",
                    "symbolSize": 8,
                    "data": [
                    ]
                }
            ],
            "animation": false,
            "yAxis": [
            {
                "type": "value",
                "minInterval": 1,
                "splitNumber":1,
                "data": ["0", "1"],
                "min": 0,
                "max": 1
            }
            ],
            "dataZoom": {
                "show": false,
                "height": 30,
                "realtime": true,
                "handleColor": "#00932a",
                "start": 0,
                "end": 100
            },
            "color": ["#87D200", "#FFCC00"],
            "grid": {
                "x": 60,
                "y": 30,
                "x2": 60,
                "y2": 80
            }
}

其他信息 (Other comments)

@pissang pissang added the bug label Jul 15, 2016
@pissang
Copy link
Contributor

pissang commented Jul 15, 2016

应该是 animation: false 时重新刷新产生的 bug

@mattxu-zz
Copy link
Author

"axisPointer": {
"animation": true
}
改成true了还是会变,还是说是改其他地方?现在发现点toolbox里的save as image也会变折线

@pissang
Copy link
Contributor

pissang commented Jul 15, 2016

option.animation

@mattxu-zz
Copy link
Author

OK,fixed. Thank you~

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants