この記事では、Echarts チャートに注釈線を追加するためのメソッドとプロパティについて説明します。開始点と終了点を配置する方法、および外観とテキストをカスタマイズする方法について説明します。 addAnnotationLine() の使用に重点を置いています。m
Echarts チャートに注釈線を追加するには、addAnnotationLine()
を使用します。方法。このメソッドは、線の構成を指定するオブジェクトとチャートのインスタンスの 2 つのパラメーターを受け取ります。addAnnotationLine()
method. This method takes two parameters: an object specifying the line's configuration, and the chart's instance.
Here's an example of how to use the addAnnotationLine()
method:
<code class="javascript">const myChart = echarts.init(document.getElementById('myChart')); const line = { type: 'line', // 'line', 'curve' x: [10, 20], // Coordinates of the line's starting and ending points. y: [10, 20], symbol: ['none', 'none'], // Symbols at the starting and ending points. label: { // Label attached to the line. show: true, formatter: 'annotation line' } }; myChart.addAnnotationLine(line);</code>
The starting and ending points of an annotation line can be positioned using the x
and y
addAnnotationLine()
メソッドの使用方法の例を次に示します:
<code class="javascript">const line = { x: [10, 20], y: [10, 20] };</code>
x
プロパティと y
プロパティを使用して配置できます。各プロパティは、点の X 座標と Y 座標を表す 2 つの数値の配列を受け入れます。たとえば、次の設定では、ラインが (10, 10) で開始し、(20, 20) で終了するように配置されます。 Echarts で注釈線の外観とテキストをカスタマイズするにはどうすればよいですか?: このプロパティは、線に添付されるラベルの外観とテキストを制御します。
🎜 🎜たとえば、次の設定では、線の色を赤、幅を 2、ラベルのテキストを「カスタム注釈線」に設定します:🎜<code class="javascript">const line = { lineStyle: { color: 'red', width: 2 }, symbol: ['circle', 'circle'], label: { show: true, formatter: 'Custom Annotation Line' } };</code>
以上がecharts は寸法線を追加しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。