Skip to content
Advertisement

D3 / Canvas: Axis not displayed

i have the following issue: I want to create a simple chart using the d3 library and the canvas rendering.

JavaScript

I don’t see anything in my browser – but, if I inspect the element, the Axis is ‘compiled’ in the code and I can hover over every tick in the code while the position in the DOM is marked. But, nothing to see.

There is already a chart written in d3 / canvas, but, the Axis are accessed to the canvas directly, like

JavaScript

The goal is, to use d3 for that.

Is this possible only with svg?

Thanks in advance!

Advertisement

Answer

You would need to draw the axis manually on the <canvas> element. Here’s an example, with help from D3 and Canvas in 3 steps and D3 + Canvas demo:

JavaScript
JavaScript

If you don’t have to use D3, you might want to look into a different charting library that’s designed especially for the canvas element, like CanvasJS.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement