Max Morjakov
Max Morjakov
If someone like me getting this error when using some interactive non-slate-elements inside slate-element (it was `td` in my case), even with `contentEditable={false}` and `userSelect: "none"`, you must check that...
@antonbehaeghe I've made demo https://codesandbox.io/s/basic-victory-example-rfb7s Things you looking for in `Label` and `LabelLine`, but this works only if you pass to chart `width` and `height`, otherwise you can't get the...
@trancongdung12 Hey, I didn't work with charts for a long time, so it's not an ideal solution, but I think you can check this fork of the solution above https://codesandbox.io/s/basic-victory-example-forked-b090ed?file=/LabelLine.js...
@cmerat I think it's because how rhf works with `undefined` unfortunately. If you change `undefined` to `null` in this line `onChange(isNaN(newValue) ? undefined : newValue);` it will work: ``` onChange={(e)...