热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

jQueryflotcharts-为yaxis标签添加单个值-jQueryflotcharts-addsinglevaluetoyaxislabel

Howtoaddsinglevaluetoyaxislabel?Justlikethis80value:如何为yaxis标签添加单个值?就像这个80值:

How to add single value to yaxis label? Just like this 80 value: enter image description here

如何为yaxis标签添加单个值?就像这个80值:

1 个解决方案

#1


1) For the line use markings, for example add this to your chart options:

1)对于线路使用标记,例如将其添加到图表选项中:

grid: {
    markings: [ { xaxis: { from: 0, to: 2000 }, yaxis: { from: 80, to: 80 }, color: "black" }, ... ]
    ...
}

Change the from and to values according to your needs and min/max values.

根据您的需要和最小/最大值更改from和to值。

2) For the value on the axis you have to add it manually like this (see the example):

2)对于轴上的值,您必须像这样手动添加它(参见示例):

var o = plot.pointOffset({ x: plot.getAxes().xaxis.min, y: 80.0});
$(plot.getPlaceholder()).append("
80
");

推荐阅读
author-avatar
额外的房间
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有