Ionic 3に基づいて、タブの切り替えを実現し、echartsを再読み込みします。


要求
タブを切り替えるたびに、対応するechart図をロードします。最初のアニメーション効果が必要です。
効果は以下の通りです

注意点
1、echartsは毎回再ロードできるようにするために、「_」を除去する必要があります。エコハツinstance_"属性を変更しないと、タブが切り替わりません。
2、tsの中でhtmlページの要素を獲得して、構造の方法の中で書くことができなくて、ionView DidEnter()の方法の中で書くべきです。
3、タブは[gSwitch]と組み合わないでください。この場合、現在のタブの要素しか入手できません。選択されていないタブの要素は入手できません。第2ステップのionView DidEnter()の方法でも自然に入手できません。使い方を組み合わせるべきです。
4、直接にチャートをグローバル変数にすることはできません。これで2回目のローディングはアニメ効果がありません。
コードを付ける
ファイル

<ion-header>
 <ion-navbar>
  <ion-title>  </ion-title>
 </ion-navbar>

</ion-header>

<ion-content padding>

  <ion-segment [(ngModel)]="choice" (ionChange)="segmentChanged($event)">
   <ion-segment-button value="choice1">
          
   </ion-segment-button>
   <ion-segment-button value="choice2">
          
   </ion-segment-button>
   <ion-segment-button value="choice3">
        
   </ion-segment-button>
   <ion-segment-button value="choice4">
        
   </ion-segment-button>
  </ion-segment>

  <div id="chartContainer" style="width: 100%; height: 300px;"></div>

</ion-content>
tsファイル

import {Component} from '@angular/core';
import * as echarts from 'echarts';

@Component({
 selector: 'page-data-area',
 templateUrl: 'area.html'
})
export class DataAreaPage {
 choice: string = "choice1";
 ec: any = echarts;
 chartContainer: any;

 constructor() {
 }

 clickChart1() {
  const chart1 = this.ec.init(this.chartContainer);
  chart1.setOption({
   series: {
    type: 'pie',
    data: [{
     name: 'A',
     value: 10
    }, {
     name: 'B',
     value: 20
    }, {
     name: 'C',
     value: 30
    }, {
     name: 'D',
     value: 40
    }]
   }
  }, true);
  this.chartContainer.removeAttribute("_echarts_instance_");
 }

 clickChart2() {
  const chart2 = this.ec.init(this.chartContainer);
  chart2.setOption({
   series: {
    type: 'pie',
    data: [{
     name: 'A',
     value: 10
    }, {
     name: 'B',
     value: 20
    }, {
     name: 'C',
     value: 30
    }]
   }
  }, true);
  this.chartContainer.removeAttribute("_echarts_instance_");
 }

 clickChart3() {
  const chart3 = this.ec.init(this.chartContainer);
  chart3.setOption({
   series: {
    type: 'pie',
    data: [{
     name: 'A',
     value: 10
    }, {
     name: 'B',
     value: 20
    }, {
     name: 'C',
     value: 30
    }, {
     name: 'D',
     value: 40
    }, {
     name: 'E',
     value: 50
    }]
   }
  }, true);
  this.chartContainer.removeAttribute("_echarts_instance_");
 }

 clickChart4() {
  const chart4 = this.ec.init(this.chartContainer);
  chart4.setOption({
   series: {
    type: 'pie',
    data: [{
     name: 'A',
     value: 10
    }, {
     name: 'B',
     value: 20
    }, {
     name: 'C',
     value: 30
    }, {
     name: 'D',
     value: 40
    }, {
     name: 'E',
     value: 50
    }, {
     name: 'F',
     value: 60
    }]
   }
  }, true);
  this.chartContainer.removeAttribute("_echarts_instance_");
 }

 segmentChanged(e) {
  if (e.value == "choice1") {
   this.clickChart1();
  } else if (e.value == "choice2") {
   this.clickChart2();
  } else if (e.value == "choice3") {
   this.clickChart3();
  } else if (e.value == "choice4") {
   this.clickChart4();
  }
 }

 ionViewDidEnter() {
  this.chartContainer = document.getElementById('chartContainer');
  this.clickChart1();
 }

}
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。