dashed ticklines/gridlines in flot

后端 未结 2 972
暖寄归人
暖寄归人 2020-12-31 23:47

I am pretty new to this flot API. I want to have dashed gridlines/ticklines instead of solid line both X-axis\' and Y-axis\'. Can anyone help me with this??

Thanks i

相关标签:
2条回答
  • 2021-01-01 00:03

    Unfortunately Flot doesn't currently provide a way to change grid/tick line styles. You would have to modify the library itself.

    0 讨论(0)
  • 2021-01-01 00:04

    I was able to produce dashed lines for the grid's markings by modifying the library. I'm currently using Flot ver 0.8.0

    First I added a new attribute under grid (around line 400), just below the markingsLineWidth:

    markingsStyle: 'dashed'
    

    Since Flot is using canvas to render the charts, I added a dashedLineTo() extension for the canvas using this code from David Owens. I added it just right after the color parser plugin on top of the Flot's code, with credits given to David. The dashedLineTo() has the following parameters:

    dashedLineTo(fromX, fromY, toX, toY, pattern)
    

    For the pattern, I used [5,5] which means there will alternating 5px of dash, and 5px of space.

    Finally I modified the drawGrid function in the plugin, when the markings are being drawn.

    if(options.grid.markingsStyle == 'dashed') {
        ctx.dashedLineTo(xrange.from, yrange.from, xrange.to, yrange.to, [5,5])
    } else {
        ctx.moveTo(xrange.from, yrange.from);
        ctx.lineTo(xrange.to, yrange.to);
    }
    

    Just thought you can use this as a reference when modifying the library.

    0 讨论(0)
提交回复
热议问题