We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
在例子中,我希望interval遮住line,即柱状图处在上层,因此如下定义,先绘制line再绘制interval。
chart.line().position('year*sales').color('black'); chart.interval().position('year*sales');
但是这种情况下,interval-select点击,点到了line上。必须调换两者的顺序,才能正确触发。
chart.interval().position('year*sales'); chart.line().position('year*sales').color('black');
这种情况是否违反直觉,因为通常情况下,会觉得处在上面的元素被点到
The text was updated successfully, but these errors were encountered:
b80aa3f
升级到 3.2.4-beta.1
Sorry, something went wrong.
simaQ
No branches or pull requests
在例子中,我希望interval遮住line,即柱状图处在上层,因此如下定义,先绘制line再绘制interval。
但是这种情况下,interval-select点击,点到了line上。必须调换两者的顺序,才能正确触发。
这种情况是否违反直觉,因为通常情况下,会觉得处在上面的元素被点到
The text was updated successfully, but these errors were encountered: