cancel
Showing results for 
Search instead for 
Did you mean: 

Column Combination infochart - data labels how to rotate them?

Former Member
0 Kudos

Dear Team,

WE have a column combination chart with line and bar which shows data for 12 months. I want to rotate the datalabels by 90 degree making them vertical. below code works in chrome but not in IE. Please help. Below is the css i have applied to test with first bar.

.chartColumn1 g.v-m-main g.v-m-plot g.v-plot-main g.v-datalabel-group .v-datalabel:nth-child(3) text

{

-webkit-transform: rotate(-90deg);

-webkit-transform-origin: center;

transform: rotate(-90deg);

transform-origin: center;

}

Accepted Solutions (0)

Answers (1)

Answers (1)

arijit_das
Active Contributor
0 Kudos

I googled and found that svg transformation in css does not work in IE. It looks like a known issue. However I could not find any workaround for IE using css.