I'm trying to rotate the label on my X axis on my graph, similar to how the user asked here - Rotate the fleet tag label
The problem I am facing is that it looks like the CSS selector for the X axis is not picking anything. The selector I'm using is:
div.xAxis div.tickLabel
{
transform: rotate(-90deg);
-ms-transform:rotate(-90deg);
-moz-transform:rotate(-90deg);
-webkit-transform:rotate(-90deg);
-o-transform:rotate(-90deg);
}
I also donβt even understand how the graph is even visible. I don't know much about the canvas tag, but it looks like it's completely empty.


I do not understand how the source is empty. I would have thought that there would be some kind of markup, for example, vector points representing a graph. How does the canvas work? Also, how would you even know which CSS selectors to use at this point if you cannot view the source?
source
share