If you zoom in you will notice that the X axis line's color is alternating between the gray of the gridlines and the strokes of the bars when it really should be black all the way. This is caused by the fact that in the SVG world the last drawn thing ends on the top.
I can fix the gridline color using a simple CSS :first-child selector to hide the very first line only but dealing with the bar themselves is another story... :cry:
For instance on that "official" bar chart example the drawing order is:
If you zoom in you will notice that the X axis line's color is alternating between the gray of the gridlines and the strokes of the bars when it really should be black all the way. This is caused by the fact that in the SVG world the last drawn thing ends on the top. I can fix the gridline color using a simple CSS
:first-child
selector to hide the very first line only but dealing with the bar themselves is another story... :cry: