亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何在 ng-apexchart 中禁用工具提示

如何在 ng-apexchart 中禁用工具提示

慕沐林林 2023-02-24 16:16:41
我正在將頂點圖表集成到我的角度應用程序中,實現頂點折線圖。我想隱藏嘗試啟用選項的工具提示:false。但沒有工作。甚至無法將自定義工具提示設置為折線圖。當懸停在系列上時,它顯示一些垂直虛線,我需要隱藏工具提示或隱藏垂直虛線并創建自定義工具提示。任何建議都會很有幫助。謝謝。import { Component, ViewChild, OnInit } from '@angular/core';import {  ChartComponent,  ApexAxisChartSeries,  ApexChart,  ApexXAxis,  ApexDataLabels,  ApexTitleSubtitle,  ApexStroke,  ApexGrid,  ApexLegend,  ApexTooltip,  ApexYAxis,} from 'ng-apexcharts';export interface ChartOptions {  series: ApexAxisChartSeries;  chart: ApexChart;  xaxis: ApexXAxis;  yaxis: ApexYAxis;  dataLabels: ApexDataLabels;  grid: ApexGrid;  stroke: ApexStroke;  title: ApexTitleSubtitle;  legend: ApexLegend;  tooltip: ApexTooltip;}@Component({  selector: 'app-line-chart',  templateUrl: './line-chart.component.html',  styleUrls: ['./line-chart.component.css'],})export class LineChartComponent implements OnInit {  @ViewChild('lineChart') lineChart: ChartComponent;  public chartOptions: Partial<ChartOptions>;  constructor() {}  ngOnInit(): void {    this.chartOptions = {      series: [        {          name: 'Desktops',          data: [10, 41, 35, 51, 49, 62, 69, 91, 148],        },        {          name: 'Laptops',          data: [22, 55, 66, 77, 88, 99, 90, 110, 170],        },      ],      chart: {        height: 350,        type: 'line',        zoom: {          enabled: false,        },        toolbar: {          tools: {            download: false,          },        },      },      dataLabels: {        enabled: false,      },      stroke: {        curve: 'straight',      },      grid: {        row: {          colors: ['#f3f3f3', 'transparent'], // takes an array which will be repeated on columns          opacity: 0.5,        },      },      yaxis: {        tooltip: {          enabled: false,        },      },
查看完整描述

1 回答

?
繁星淼淼

TA貢獻1775條經驗 獲得超11個贊

您缺少組件中的工具提示屬性


<apx-chart

  ...

  [tooltip]="chartOptions.tooltip"

  #lineChart

></apx-chart>


查看完整回答
反對 回復 2023-02-24
  • 1 回答
  • 0 關注
  • 169 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號