I need to increase the size of all the elements. Tell me please how can I do this?
I used
VF = Vex.Flow;
var renderer = new VF.Renderer(div, VF.Renderer.Backends.SVG);
renderer.resize(150, 100);
var context = renderer.getContext();
context.setViewBox(20, 20, 90, 90); //size
There is also context.scale(x,y) which sets the viewbox by multiplying the width/height by x/y respectively
Most helpful comment
I used