3

我想在线上显示没有标记的样条图。这个完成了。But now, When a point is selected, the marker doesn't appear.

我发现了一个小技巧来做我想做的事。在 plotOptions 中,radius 设置为 0.1 以被线宽隐藏。

plotOptions: {
    series: {
        allowPointSelect: true,
            marker: {
                radius: 0.1, // hack to show selected point
                states: {
                    hover: {
                        radius: 5
                    },
                    select: {
                        radius: 5
                    }
                }
            }
        }
    }
}

完整代码在这里:http:  //jsfiddle.net/ManUtopiaK/7GXeT/

这是一个 HighCharts 错误还是我在图形选项中犯了一个错误?

4

1 回答 1

-2

如果您将标记设置为已启用:false,如果您将鼠标悬停在该点上(当出现工具提示弹出窗口时),您仍会显示标记点。在此处查看更新的小提琴:

plotOptions: {
    series: {
        allowPointSelect: true,
        marker: {
            enabled: false,
            //radius: 0.1, // hack to show selected point
            states: {
                hover: {
                    radius: 5
                },
                select: {
                    radius: 5
                }
            }
        }
    }
}
于 2013-01-18T21:37:49.543 回答