fit tick labels into bounding box #3

Merged
rozetko merged 2 commits from fit-tick-labels-into-bounding-box into main 11 months ago
  1. 2
      package.json
  2. 2
      src/index.ts

2
package.json

@ -1,6 +1,6 @@
{
"name": "@chartwerk/core",
"version": "0.6.15",
"version": "0.6.16",
"description": "Chartwerk core",
"main": "dist/index.js",
"types": "dist/index.d.ts",

2
src/index.ts

@ -219,6 +219,8 @@ abstract class ChartwerkPod<T extends Serie, O extends Options> {
this.renderXAxis();
this.renderYAxis();
this.renderY1Axis();
const bbox = this.svg.node().getBBox();
this.svg.attr('viewBox', `${bbox.x} ${bbox.y} ${bbox.width} ${bbox.height}`);
this.options.callbackComponentRenderEnd(RenderComponent.AXES);
}

Loading…
Cancel
Save