不同选项卡中的相同高图表未加载 - 仅第一个选项卡加载

问题描述 投票:0回答:2

我正在尝试使用选项卡更改上的不同数据更新相同的图表。 所以我的父组件具有这种形式的子组件app-chart-metric-view。我已经为 mat 选项卡组添加了选项卡事件检测。

AdminConsolecomponent.html

<mat-tab-group mat-stretch-tabs class="mat-elevation-z4" (selectedTabChange)="tabChanged($event)">
  <mat-tab label="Enable Plugin">
    <div class="button-row">
      <button mat-raised-button class="activation-buttons" (click)="openAddPluginDialog()">Add
        plugin
      </button>
    </div>
 </mat-tab>

  <mat-tab label="Chart1">
    <app-chart-metric-view></app-chart-metric-view>
  </mat-tab>

  <mat-tab label="Chart2">
    <app-chart-metric-view></app-chart-metric-view>
  </mat-tab>


</mat-tab-group>

我检测到选项卡选项卡更改,一旦触发,我会调用子组件中的函数(在 @viewChild 的帮助下),该函数向后端发出请求,获取数据集并显示它。

此外,我将选项卡的标签发送到后端,并根据它我收到的数据发生变化。问题是正在加载第一个选项卡的图表,但不加载后续选项卡的图表。

AdminConsolecomponent.ts

import { ChartMetricViewComponent } from '../chart-metric-view/chart-metric-view.component';

    export class AdminConsoleComponent {

      @ViewChild( ChartMetricViewComponent ) child: ChartMetricViewComponent ; 

      constructor(//some components) { }
      ngOnInit() {
      //some functions
      }

      tabChanged = (tabChangeEvent: MatTabChangeEvent): void => {
        if(tabChangeEvent.index !=0) {
          this.child.shfk(tabChangeEvent.tab.textLabel);

      }

}

图表度量视图组件.ts

export class ChartMetricViewComponent implements OnInit {

  metricItems: MetricItem[] = [];
  constructor(public utility: ControltowerUtilityService, public metricService: MetricDataService, private chartService: ChartDataService) { }

  @ViewChild('chartTarget') chartTarget: ElementRef;
  @ViewChild('chartTarget2') chartTarget2: ElementRef;

  chart: Highcharts.ChartObject;
  chart2: Highcharts.ChartObject

  public shfk(textLabel) {

    this.chartService.getPluginMetrics(textLabel).subscribe(data => {

      this.metricItems = data;


      const options: Highcharts.Options = {
        chart: {
          type: 'column'
        },
        title: {
          text: 'Stacked Consumption chart'
        },
        xAxis: {
          categories: ['Jan', 'Feb', 'March', 'April', 'May', 'June', 'July', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },
        yAxis: {
          min: 0,
          title: {
            text: 'Bitbucket Consumption in TBs'
          },
          stackLabels: {
            enabled: true,
            style: {
              fontWeight: 'bold',
            }
          }
        },
        legend: {
          align: 'right',
          x: -30,
          verticalAlign: 'top',
          y: 25,
          floating: true,
          borderColor: '#CCC',
          borderWidth: 1,
          shadow: false
        },
        tooltip: {
          headerFormat: '<b>{point.x}</b><br/>',
          pointFormat: '{series.name}: {point.y}<br/>Total: {point.stackTotal}'
        },
        plotOptions: {
          column: {
            stacking: 'normal',
            dataLabels: {
              enabled: true,
            }
          }
        },
        series: [{
          name: this.metricItems[0].name,
          data: JSON.parse(" [ "+ this.metricItems[0].value+"]")//this.A //JSON.parse("["+this.metricItems[0].value+"]")//[5, 3, 4, 7, 2, 6] {this.A}
        }, {
          name: this.metricItems[1].name,
          data: JSON.parse("["+this.metricItems[1].value+"]")
        }, {
          name: this.metricItems[2].name,
          data: JSON.parse("["+this.metricItems[2].value+"]")
        }, {
          name: this.metricItems[3].name,
          data: JSON.parse("["+this.metricItems[3].value+"]")
        }, {
          name: this.metricItems[4].name,
          data: JSON.parse("["+this.metricItems[4].value+"]")
        }]

      };

      this.chart = chart(this.chartTarget.nativeElement, options);

    });
}

更改选项卡时,我已验证正在发出请求,并且我收到了正确的响应,但无法更新我的图表。有人可以帮忙吗? 谢谢

发现了类似的问题,但还是搞不懂

highcharts 未在选项卡中加载

HIghcharts & Bootstrap:选项卡 2 上的图表未显示。虽然第一个图表工作正常

angular highcharts
2个回答
2
投票

这个问题的解决方案是使用延迟加载概念,该概念在 Angular Material 选项卡上受支持。

只需在

ng-template
中使用
matTabContent
属性声明您的组件高图,如下所示:

<mat-tab label="Chart1">
 <ng-template matTabContent>
   <app-chart-metric-view></app-chart-metric-view>
 </ng-template>
</mat-tab>

您可以查看MatTab延迟加载的文档这里

我不知道你是否已经成功了,但无论如何它可能会帮助其他有类似问题的人


0
投票

使用 setTimeOut(() => {}, 1000) 帮助我以某种方式解决了这个问题。

© www.soinside.com 2019 - 2024. All rights reserved.