Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

kibana 4 how to change color of charts?

I am using kibana4. My dashboard looks good. but default kibana provides green color for big portion of chart. If I want to change this color preference how can I change that?

like image 487
Denzz Avatar asked Mar 26 '15 23:03

Denzz


1 Answers

I know this is very bad solution but if you want you can use it because right now kibana 4 is not providing any feature(As per my knowledge) so that we can change color of charts from any configuration.

In kibana at the path src/public/index.js following line of code is there. if you change this you can change you colors.

return function SeedColorUtilService() {
    return [
      '#5e87b0',
      '#57c17b',
      '#006e8a',
      '#663db8',
      '#bc52bc',
      '#9e3533',
      '#daa05d'
    ];
  };
like image 152
Denzz Avatar answered Oct 18 '22 10:10

Denzz