Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
I would like to add padding to the legend in linechart by adding custom CSS but unable to add it.
Solved! Go to Solution.
@JB_10252176 : If you give a CustomClass property for line chart lets say: 'abline' , then you can apply custom CSS till the selected div in below screenshot.
We cannot go inside the highlighted div and add custom CSS for individual legends as they will be at sub-part "item" . So you can give custom CSS like this:
.abline ptcs-chart-line::part(chart-layout)::part(legend){
padding:200px
}
This will apply padding to the whole legends area in the line chart.
@JB_10252176 : If you give a CustomClass property for line chart lets say: 'abline' , then you can apply custom CSS till the selected div in below screenshot.
We cannot go inside the highlighted div and add custom CSS for individual legends as they will be at sub-part "item" . So you can give custom CSS like this:
.abline ptcs-chart-line::part(chart-layout)::part(legend){
padding:200px
}
This will apply padding to the whole legends area in the line chart.