Dan Manastireanu
Dan Manastireanu
Looks like the duplicate value is added [here](https://github.com/AbelHeinsbroek/chartjs-plugin-crosshair/blob/master/src/trace.js#L395), where the zoomed data array is computed: ```js var newData = []; var index = 0; var started = false; var stop...
@CreativeCoders are you sure there isn't something else overlayed over the right part of the chart? or maybe some overflow? Try right click -> inspect element How large is the...
While the plugin does not support scrolling with the mouse wheel, it is possible to implement it. All you need is to call the plugins `doZoom` method ```js const chart...
### Chart.js 3.x.x update Obtaining the plugin is a bit easier now: ```js const plugin = Chart.registry.getPlugin('crosshair'); ``` Note: there were some changes in Chart.js v3 regarding scales. Besides that,...
I'm also using it with multiple lines and 'time' axes, but I didn't see any bugs. You can check out an example here https://codepen.io/danmana/pen/jObRWJy
I've been having the same problem once in a while: npm install is stuck and I can't cancel the process. For the last few months, this happened rarely, and when...
After trying all day to reinstall and make npm work I ended up: 1. installing [Ubuntu WSL](https://ubuntu.com/wsl) 2. installing [node in ubuntu](https://github.com/nodesource/distributions/blob/master/README.md) 3. Copying my settings to `~/.npmrc` This actually...
> Is there an option to control the node version of the lambda created using the node version we specify in the serverless? The `LambdaUpdateDeprecatedRuntime` [service plugin by mokamoto12](https://github.com/serverless/serverless/issues/11337#issuecomment-1297992664) does...
There is this PR that fixes the issue https://github.com/tulios/json-viewer/pull/341 Just waiting for the maintainer to merge it. You can try to checkout the code and build and install the extension...
There is no _nice way_ to fix this, but you can make a patch for it with the help of [patch-package](https://www.npmjs.com/package/patch-package). 1. `npm install --save-dev patch-package` 2. in `package.json` scripts...