cancel
Showing results for 
Search instead for 
Did you mean: 

Changing axis color on line chart

Former Member
0 Kudos

Hi everyone,

How can i change axis colors of line or column charts? I tried to change the css class following but it didn't work. Any help would be appreciated.

v-m-x Axis {

    fill: white !important;

background-color:white !important;

}

Regards,

Onur

Accepted Solutions (1)

Accepted Solutions (1)

mike_howles4
Active Contributor
0 Kudos

  /* Vertical "Y-Axis" */

  .v-valueaxisline {

    stroke : white !important;

  }

  /* Category "X-Axis" */

  .v-categoryaxisline {

    stroke : white !important;

  }

Former Member
0 Kudos

Michael you are the best ! Ty.

Answers (1)

Answers (1)

david_hughes
Explorer
0 Kudos

Hi Onur,

The quickest way of changing the colors of a chart is by the data series properties that are on the second tab in the additional properties for the chart.

David

Former Member
0 Kudos

Hi David,

Thanks for your reply. At data series properties, i can't see a property to change the axis color. I can only change data series colors.