Hello,
When labels for x-axis are long no one can read them (http://snag.gy/BPfQq.jpg).
Is it possible to specify angle of labels or may be there is another way to make them readable?
Thank you.
Hello,
When labels for x-axis are long no one can read them (http://snag.gy/BPfQq.jpg).
Is it possible to specify angle of labels or may be there is another way to make them readable?
Thank you.
Hello,
you can try to apply html5 rotate transformation for “x-axis” labels:
<style>
.webix_axis_item_x{
...
}
</style>
and you will probably need to make bottom padding higher for the chart plot:
view:"pivot-chart",
chart: {
padding: {bottom: 100}
},
...
Thank you, Maria. This works for me.
You are welcome!
This works for me:
<style>
.webix_axis_item_x{
-ms-transform: rotate(300deg); /* IE 9 */
-webkit-transform: rotate(300deg); /* Chrome, Safari, Opera */
transform: rotate(300deg);
padding-top:30px;
}
</style>
How to support IE8?
You can use progid:DXImageTransform.Microsoft.Matrix
in IE8 to rotate text