Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! 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.