
Adds new JSON plugin which allows you to parse serialized (JSON) configs into charts.
Features
- Added new
JSON
plugin which allows serializing and parsing serialized (JSON) configs into charts. crisp
(default:false
) setting has been added toSprite
. If set totrue
, will adjuststrokeWidth
to match screen zoom (retina) as well as its positions will be rounded up, so the lines look crisper. It's primarily meant for straight lines, but can work on other objects too. Use with care, as coordinate rounding might produce overlapping or gaps between shapes that should be adjacent.- Added new
Root
property:accessible
(default:true
). - Added new
Root
property:updateTick
(default:true
). Set it tofalse
to temporarily disable all rendering onRoot
. Reset back totrue
to resume rendering. Useful when you need to do a bunch of async operations that might result in errors if rendering started before all of them finish. crisp
is now set totrue
by default on elements that use straight lines, like grid, ticks, resize button icon, etc.- The generated code now uses
es2015
target instead ofes5
.