huang-xiao-jian / echarts-ng

angularjs decoration for Baidu echarts.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Change theme and import new ones

sbokorna opened this issue · comments

Hello,

I would like to change the theme with one from the original echarts site (the blue one).

How can I do it?

Thanks

I suppose you already import the theme script, then try the code below.
I hope it helpful.

angular.module('application').config(function($echartsProvider) {
  $echartsProvider.setGlobalOption({
    theme: 'theme name here'
  });
});

Thanks, this is the good way!