0

折れ線シリーズを表示する折れ線グラフがあります。

データポイントを常に強調表示するにはどうすればよいですか?

現在のところ、マウスがその上にある場合のみ、1 つのデータ ポイントが強調表示されます。

<ngx-charts-line-chart
  class="chart-container"
  [scheme]="colorScheme"
  [schemeType]="schemeType"
  [results]="results"
  [animations]="animations"
  [legend]="true"
  [legendTitle]="legendTitle"
  [legendPosition]="legendPosition"
  [gradient]="gradient"
  [xAxis]="showXAxis"
  [yAxis]="showYAxis"
  [showXAxisLabel]="showXAxisLabel"
  [showYAxisLabel]="showYAxisLabel"
  [xAxisLabel]="xAxisLabel"
  [yAxisLabel]="yAxisLabel"
  [autoScale]="true"
  [xScaleMin]="xScaleMin"
  [xScaleMax]="xScaleMax"
  [yScaleMin]="yScaleMin"
  [yScaleMax]="yScaleMax"
  [timeline]="timeline"
  [showGridLines]="true"
  [roundDomains]="true"
  [curve]="curve"
>
</ngx-charts-line-chart>

または、グラフにデータ ポイントを提供する他のチャート タイプはありますか? バブル チャートをテストしましたが、時間と数値を X 軸としてのみ機能します。X軸として文字列を使用する必要があります。

4

1 に答える 1