Segment Values overlapping each other
sanchay007 opened this issue · 3 comments
sanchay007 commented
palerdot commented
There is no solution for this as of now. One way to solve this is to take some kind of config in customSegmentLabels
like xPos, yPos
... still this will be very tricky to solve.
Any solution/suggestion is appreciated.
nikhil1746 commented
@sanchay007 @palerdot I faced a similar issue and handled it using CSS transform.
Example transform: rotate(0deg) translate(105px, 20px);
rotate(0deg) - will make that label horizontal align & to position it you can use x & Y position of translate(110px, -125px);