deemuss Posted June 5, 2019 Report Share Posted June 5, 2019 The default exis title is vertical: The Label direction settings only change the marking direction, but not the title direction: Is there any way to tilt the title too? Quote Link to comment Share on other sites More sharing options...
1 Hastur Posted June 5, 2019 Report Share Posted June 5, 2019 @deemuss It is possible using some additional JS code. Please insert this snippet of code into the footer of a datapage: <script type="text/javascript"> document.addEventListener('DataPageReady', test); function test() { if (typeof Highcharts === 'undefined') { setTimeout(test, 20); return; } var chartObj = Highcharts.charts[0]; if (!chartObj) return setTimeout(test, 20); chartObj.yAxis[0].axisTitle.element.setAttribute("transform", "translate(0) rotate(0 25.66 146.5)") } </script> Do not forget to disable HTML editor of the footer! Let me know if you need any further assistance. deemuss 1 Quote Link to comment Share on other sites More sharing options...
Question
deemuss
The default exis title is vertical:
The Label direction settings only change the marking direction, but not the title direction:
Is there any way to tilt the title too?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.