c3-tooltip.component.ts 383B

1234567891011121314151617
  1. import { Component, OnInit, ViewChild, TemplateRef } from '@angular/core';
  2. @Component({
  3. selector: 'c3-tooltip',
  4. templateUrl: './c3-tooltip.component.html',
  5. styleUrls: ['./c3-tooltip.component.css'],
  6. exportAs: 'c3Tooltip'
  7. })
  8. export class C3Tooltip implements OnInit {
  9. @ViewChild(TemplateRef, { read: false }) template: TemplateRef<any>;
  10. constructor() { }
  11. ngOnInit() {
  12. }
  13. }