Chart Label issue

image
Hello,
my doctype name is Change in Property but in frappe dashboard chart only showing half text Change in Prope…
Change in Prope…

this svg how show full text in chart text/label. using css i try to change width

.legend-dataset-label {
max-width: 120px !important; /* Adjust the max width as necessary /
white-space: nowrap; /
Prevent text wrapping /
overflow: hidden; /
Hide any overflow text /
text-overflow: ellipsis; /
Show ellipsis for overflow text /
display: inline-block; /
Ensure the element respects the width /
font-size: 16px; /
Ensure font size is appropriate /
fill: #000; /
Text color; adjust as needed */
}
but this css is not working that svg class
thank you