离子2高图不可见

时间:2017-07-27 08:09:28

标签: angularjs typescript highcharts ionic2

image

我添加了高图查看页面源,但在页面上看不到

我遵循了https://www.youtube.com/watch?v=FSg8n5_uaWs

怎样才能解决这个问题

我的代码;

TS;

export class VerilerPage {

  chartOptions : any;
  constructor(public navCtrl: NavController, public navParams: NavParams) {
    this.chartOptions={
       chart: {
            type: 'bar'
        },
        title: {
            text: 'Fruit Consumption'
        },
        xAxis: {
            categories: ['Apples', 'Bananas', 'Oranges']
        },
        yAxis: {
            title: {
                text: 'Fruit eaten'
            }
        },
        series: [{
            name: 'Jane',
            data: [1, 0, 4]
        }, {
            name: 'John',
            data: [5, 7, 3]
        }]
    }
  }

HTML;

<chart options="chartOptions" type="chart" ></chart>

1 个答案:

答案 0 :(得分:2)

由于您使用的是角度2/4,因此必须使用[]

附加选项
<chart [options]="chartOptions" type="chart" ></chart>