Chart.DataBindCrossTable メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
データは、特定の列の一意の値ごとに作成する 1 つの系列で、グラフを表にバインドします。
オーバーロード
DataBindCrossTable(IEnumerable, String, String, String, String) |
データは、特定の列の一意の値ごとに作成する 1 つの系列で、グラフを表にバインドします。 |
DataBindCrossTable(IEnumerable, String, String, String, String, PointSortOrder) |
データは、特定の列の一意の値ごとに作成する 1 つの系列で、グラフを表にバインドします。 |
DataBindCrossTable(IEnumerable, String, String, String, String)
データは、特定の列の一意の値ごとに作成する 1 つの系列で、グラフを表にバインドします。
public:
void DataBindCrossTable(System::Collections::IEnumerable ^ dataSource, System::String ^ seriesGroupByField, System::String ^ xField, System::String ^ yFields, System::String ^ otherFields);
public void DataBindCrossTable (System.Collections.IEnumerable dataSource, string seriesGroupByField, string xField, string yFields, string otherFields);
member this.DataBindCrossTable : System.Collections.IEnumerable * string * string * string * string -> unit
Public Sub DataBindCrossTable (dataSource As IEnumerable, seriesGroupByField As String, xField As String, yFields As String, otherFields As String)
パラメーター
- dataSource
- IEnumerable
グラフにバインドされたデータであるデータ ソース。
- seriesGroupByField
- String
データを系列にグループ化するために使用するフィールドの名前。
- xField
- String
X 値のフィールド名。
- yFields
- String
Y 値のフィールドの名前のコンマ区切りの一覧。
- otherFields
- String
バインドできるその他のデータ ポイントのプロパティ。
注釈
データ ソースの特定 seriesGroupByField
の列の一意の値の数に応じて、系列がグラフに自動的に追加されます。つまり、系列の作成は列のグループ化に依存します。
データ ソースには、 OleDbDataReaderSqlDataReader または オブジェクトをDataView指定できます。 インターフェイスを実装するすべてのコレクションを使用できることに IEnumerable 注意してください。
X 値と Y 値以外の他のデータ ポイント プロパティをバインドできます。 形式は PointProperty=Field[{Format}] [,PointProperty= Field[{Format}]] です。 例: "Tooltip=Price{C1},Href=WebSiteName"
データ ポイントのプロパティは次のとおりです。
- DataPointCustomProperties.AxisLabel
- DataPointCustomProperties.ToolTip
- DataPointCustomProperties.Label
- DataPointCustomProperties.LegendText
- DataPointCustomProperties.LegendToolTip
- DataPointCustomProperties.CustomPropertiesは、カスタム プロパティの名前です。
適用対象
DataBindCrossTable(IEnumerable, String, String, String, String, PointSortOrder)
データは、特定の列の一意の値ごとに作成する 1 つの系列で、グラフを表にバインドします。
public:
void DataBindCrossTable(System::Collections::IEnumerable ^ dataSource, System::String ^ seriesGroupByField, System::String ^ xField, System::String ^ yFields, System::String ^ otherFields, System::Windows::Forms::DataVisualization::Charting::PointSortOrder sortingOrder);
public void DataBindCrossTable (System.Collections.IEnumerable dataSource, string seriesGroupByField, string xField, string yFields, string otherFields, System.Windows.Forms.DataVisualization.Charting.PointSortOrder sortingOrder);
member this.DataBindCrossTable : System.Collections.IEnumerable * string * string * string * string * System.Windows.Forms.DataVisualization.Charting.PointSortOrder -> unit
Public Sub DataBindCrossTable (dataSource As IEnumerable, seriesGroupByField As String, xField As String, yFields As String, otherFields As String, sortingOrder As PointSortOrder)
パラメーター
- dataSource
- IEnumerable
グラフにバインドされたデータであるデータ ソース。
- seriesGroupByField
- String
データを系列にグループ化するために使用するフィールドの名前。
- xField
- String
X 値のフィールド名。
- yFields
- String
Y 値のフィールドの名前のコンマ区切りの一覧。
- otherFields
- String
バインドできるその他のデータ ポイントのプロパティ。
- sortingOrder
- PointSortOrder
グループ フィールドの値で並べ替える系列の順序。
注釈
データ ソースの特定 seriesGroupByField
の列の一意の値の数に応じて、系列がグラフに自動的に追加されます。つまり、系列の作成は列のグループ化に依存します。
データ ソースには、 OleDbDataReaderSqlDataReader または オブジェクトをDataView指定できます。
インターフェイスを実装するすべてのコレクションを使用できることに IEnumerable 注意してください。
X 値と Y 値以外の他のデータ ポイント プロパティをバインドできます。 形式は PointProperty=Field[{Format}] [,PointProperty= Field[{Format}]] です。 例: "Tooltip=Price{C1},Href=WebSiteName"
データ ポイントのプロパティは次のとおりです。
- DataPointCustomProperties.AxisLabel
- DataPointCustomProperties.ToolTip
- DataPointCustomProperties.Label
- DataPointCustomProperties.LegendText
- DataPointCustomProperties.LegendToolTip
- CustomPropertiesはカスタム プロパティの名前です。
適用対象
.NET