You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, first of all thanks a lot for the plugin.
Is it possible to make fully transparent spaces between dashes? I have colored line with applied dashes on it but in the result the spaces between dashes are not fully transparent. Spaces are just lighter color of the same color as dashes.
Thanks
The text was updated successfully, but these errors were encountered:
This is due to the line still being drawn by flot after the dashes plugin drew them already.
You can fix this by adding a hook with lowest priority to drawSeries:
/** * Avoid drawing the dashed lines of the "dash" plugin. */plot.hooks.drawSeries.push((plot,canvascontext,series)=>{if(series.dashes&&series.dashes.show){series.datapoints.points=[];}});
Hello, first of all thanks a lot for the plugin.
Is it possible to make fully transparent spaces between dashes? I have colored line with applied dashes on it but in the result the spaces between dashes are not fully transparent. Spaces are just lighter color of the same color as dashes.
Thanks
The text was updated successfully, but these errors were encountered: