Dygraph 移除图表 Hover 默认

今天,我们来讲讲 Dygraph 移除默认图表 Hover 的效果。

默认,在 Hover 的过程中:

  • 线条高亮展示
  • 线条上存在系列定位点

线条 Hover 不高亮展示

hover-default.png

上图,最大圆点所在的线条为高亮

我们将其统一为非高亮:

public isSame:boolean = true;



let options = {

  highlightSeriesBackgroundAlpha: this.isSame ? 1 : 0.5,

  highlightSeriesOpts: {
    strokeWidth: 1,
    strokeBorderWidth: 1,
  }
};

this.dygraph = new Dygraph(this.chartDom, this.data, options);

isSame 为真,不设置 hover 样式区别。falsehover 有高亮。

isSametrue 效果图如下:

not-highlight.png

移除线条 Hover 的定位点

上图的展示还有定位点的存在,那么,我们怎么移除它呢?

如下:

public isSame:boolean = true;



let options = {

  highlightSeriesBackgroundAlpha: this.isSame ? 1 : 0.5,

  highlightCircleSize: this.isSame ? 0 : 3, // other seria
  highlightSeriesOpts: {
    strokeWidth: 1,
    strokeBorderWidth: 1,
    highlightCircleSize: this.isSame ? 0 : 5 // highligh seria
  }
};

this.dygraph = new Dygraph(this.chartDom, this.data, options);

效果如图:

remove-default-hover.png

参考

pexels-min-an-675920.jpg

推荐阅读

© 版权声明
THE END
喜欢就支持一下吧
点赞0

Warning: mysqli_query(): (HY000/3): Error writing file '/tmp/MYkSH5gl' (Errcode: 28 - No space left on device) in /www/wwwroot/583.cn/wp-includes/class-wpdb.php on line 2345
admin的头像-五八三
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

图形验证码
取消
昵称代码图片