簡體   English   中英

ng2-admin中的卡片中的高圖100%(高度寬度)-Angular2 ng2-admin模板

[英]Highcharts 100% (height width) in Card from ng2-admin - Angular2 ng2-admin Template

我不會在akveo / ng2-admin模板中使用Highcharts。 還安裝gevgeny / angular2-highcharts。

但是Highcharts不會更改大小,也無法適應父容器。

CSS類不起作用:

.highcharts-container {
  width:100% !important;
  height:100% !important;
}

component.ts

import {Component, ElementRef} from '@angular/core';

import 'style-loader!./Chart.scss';

@Component({
    selector: 'ngbd-tabset-basic2',
    templateUrl: './chart.html'
})
export class Chart {
    options: Object;
    chart: Object;

    constructor() {
        this.options = {
            chart: {
            },
            title : { text : 'simple chart' },
            series: [{
                data: [29.9, 71.5, 106.4, 129.2],
            }]
        };
    }

    onChartLoad(chart) {
        chart.reflow();
    }
}

Chart.scss

@import "../../theme/sass/conf/conf";

.highcharts-container {
  width:100% !important;
  height:100% !important;
}

chart.html

<div class="widgets">

    <div class="row">
        <ba-card title="Highcharts Demo" baCardClass="xmedium-card">
             <chart [options]="options" (load)="onChartLoad($event.context)" ></chart>
        </ba-card>
    </div>
</div>

結果示例

謝謝你的支持

這對我有用-僅CSS:

chart {display: block;}

可以使用圖表的內部CSS類。
highcharts基本包含highcharts-containerhighcharts-root類。
因此,如果您想調整圖表大小,建議您使用。

.highcharts-root {
    width:500px !important;
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM