Hi community,
Is it possible to change the view of the Text without changing the Bar Chart to horizontal?
How it is right now:
How it should be:
Thanks in advance!
Best Regards
Hi community,
Is it possible to change the view of the Text without changing the Bar Chart to horizontal?
How it is right now:
How it should be:
Thanks in advance!
Best Regards
Hi ppeng,
You can use custom styles with the CSS Editor node to rotate the axis. You can use the below command to rotate the labels.
text.knime-tick-label {
transform: rotate(45deg);
}
However, this might lead to another problem, as there is not enough horizontal space for the rotated labels. So, for custom visualizations, you could use Generic JavaScript View node, where you have to write your own JavaScript code.
Best,
Keerthan
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.