Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. 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.