共用方式為


Series.IsXValueIndexed 屬性

定義

取得或設定旗標,指出資料點索引是否用於 X 值。

public:
 property bool IsXValueIndexed { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public bool IsXValueIndexed { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.IsXValueIndexed : bool with get, set
Public Property IsXValueIndexed As Boolean

屬性值

Boolean

true 如果屬於數列的資料點索引將用於 X 值,則為,否則為 false 。 預設值是 false

屬性

備註

數列中的所有資料點都會使用順序索引,如果此屬性為 true ,則會依序繪製資料點,而不論其相關聯的 X 值為何。 這表示不會有「遺失」的資料點。

例如,假設數列中有三個 (3) 資料點,其 X 值為1、2和4。 如果這個屬性為 false ,則 X 軸位置(標示為 "3")將會遺漏資料點。 但是,如果您將此屬性設定為 true ,則會依序在點1、2和4繪製三個資料點,而且不會有遺漏的資料點。 標示為 "3" 的 X 軸位置不會出現在圖表上。

當您知道您不會有資料的間隔(例如週末)時,這會很有用。

重要

如果您要顯示多個數列,而且至少有一個數列使用索引的 X 值,則所有數列都必須對齊-也就是具有相同數目的資料點,而對應的點必須有相同的 X 值。

適用於