import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'cm-bar-doc', templateUrl: './cm-bar-doc.component.html', styleUrls: ['./cm-bar-doc.component.css'] }) export class CosmosBarDocComponent implements OnInit, OnDestroy { apiPath = './docs/components/cm-bar-doc/cm-bar.api.json'; doc_1 = { title: "基本", intro: `设置显示的指标维度。`, htmlPath: './docs/components/cm-bar-doc/cm-bar-doc-1/cm-bar-doc-1.component.html', tsPath: './docs/components/cm-bar-doc/cm-bar-doc-1/cm-bar-doc-1.component.ts' }; doc_2 = { title: "双y轴", intro: `设置双y轴`, htmlPath: './docs/components/cm-bar-doc/cm-bar-doc-2/cm-bar-doc-2.component.html', tsPath: './docs/components/cm-bar-doc/cm-bar-doc-2/cm-bar-doc-2.component.ts' }; constructor() { } ngOnInit() { } ngOnDestroy() { } }