Flot chart points.show:false不起作用

时间:2014-07-17 15:46:35

标签: jquery flot

我正在使用flot chart(http://flotcharts.org)在我的应用中构建图表,但我遇到了一个无法在任何地方找到解决方案的问题。 points.show:false属性似乎不起作用,而lines.show:false效果很好。

我正在使用flot工具提示(https://github.com/krzysu/flot.tooltip)插件来显示悬停点数据。

以下是我的代码的一部分:

options = {
        series: {
          points: {
            show: false,
            lineWidth: 1,
            fill: true,
            fillColor: false,
            symbol: "circle",
            radius: 2
          },
          lines: {
            show: false
          },
          splines: {
            show: true
          }
          shadowSize: 5

        },
        legend:{
          container:$("#legendContainer") 
        },
        grid: {
          hoverable: true,
          clickable: false,
          show: true,
          backgroundColor: { colors: ["#f9f9f9","#ffffff"]}
        },
        colors:["#f63131","#f0cd48","#7ef048","#4888f0","#a84ad6","#ffa500"],
        tooltip: true,
        tooltipOpts: {
          defaultTheme: false,
          content: "%s <br> %x <br>%y"
        },
        xaxis:
          {
           mode: "time",
           minTickSize: [1, "day"],
           max: (new Date()).getTime(),
           min: minDate
          },
        yaxes:[
          { ticks: [] },
          { ticks: [] },
          { ticks: [] },
          { ticks: [] },
          { ticks: [] }
        ]

      };

1 个答案:

答案 0 :(得分:3)

 points: {
      show: false
 }

控制是否在图表和it works just fine with your options上绘制点。

我相信&#34;点&#34;你指的是当你将鼠标悬停在情节上时它突出显示你已经结束的点。 To disable that,设置:

 grid: {
     autoHighlight: false
 }