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
I had the same problem. It was a scale type that I'm using but not included in the plugin for me.
If the chart.crosshair is undefined, the plugin probably just doing a "return", before it can create "chart.crosshair";
varCrosshairPlugin={id: 'crosshair',afterInit: function(chart){// I've checked what properties I had on "chart" with "debugger;"if(!chart.config.options.scales.x){// make sure that your x axis named just "x", it won't allow xAxis0 or anything custom like that. return}varxScaleType=chart.config.options.scales.x.type;if(xScaleType!=='linear'&&xScaleType!=='time'&&xScaleType!=='category'&&xScaleType!=='logarithmic'&&xScaleType!=='timeseries'){/* I had "timeseries" type x scale, which wasn't included in here, I saw no reason why on the later parts of the plugin, so after adding, seems to solved it for me. */return;}if(chart.options.plugins.crosshair===undefined){chart.options.plugins.crosshair=defaultOptions;}chart.crosshair={enabled: false,suppressUpdate: false,x: null,originalData: [],originalXRange: {},dragStarted: false,dragStartX: null,dragEndX: null,suppressTooltips: false,ignoreNextEvents: 0,reset: function(){this.resetZoom(chart,false,false);}.bind(this)};// the rest of the plugin...
No description provided.
The text was updated successfully, but these errors were encountered: