twp0217 / ngx-echarts

Apache ECharts component for Angular(基于 Angular 的 Apache ECharts 组件)
https://twp0217.github.io/ngx-echarts/
82 stars 25 forks source link

如何使用Echarts 全局对象? #23

Closed SkillUsing closed 6 years ago

SkillUsing commented 6 years ago

我需要 echarts.number.parseDate(params.value[0]); 类似这样的操作

http://echarts.baidu.com/demo.html#calendar-pie 这是网页

wzy156917847 commented 6 years ago

您好,麻烦问下,您是如何获得全局echarts对象的

SkillUsing commented 6 years ago

@wzy156917847 您试试:

@Component({
    selector: '[echart]',
    template: `
<echarts-ng2 class="main" #echarts></echarts-ng2>
`
})
export class EchartComponent
{
@ViewChild('echarts') public echarts: ECharts;
}
wzy156917847 commented 6 years ago

我试了 好像没有把全局的echarts对象封装到里面 谢谢

twp0217 commented 6 years ago

@wzy156917847 你什么样的全局对象,做什么的

wzy156917847 commented 6 years ago

就是初始化echarts时候用的对象 image

twp0217 commented 6 years ago

那你应该可以自己导入 import * as echarts from 'echarts';

SkillUsing commented 6 years ago

但是页面大小是硬伤啊

twp0217 commented 6 years ago

@SkillUsing 说明下具体情况

wzy156917847 commented 6 years ago

@twp0217 可以的 谢谢