DataPointCollection.DataBind(IEnumerable, String, String, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將資料點的 X 值、Y 值以及屬性值 (例如 Tooltip 或 LabelStyle) 資料繫結到資料來源。
public:
void DataBind(System::Collections::IEnumerable ^ dataSource, System::String ^ xField, System::String ^ yFields, System::String ^ otherFields);
public void DataBind (System.Collections.IEnumerable dataSource, string xField, string yFields, string otherFields);
member this.DataBind : System.Collections.IEnumerable * string * string * string -> unit
Public Sub DataBind (dataSource As IEnumerable, xField As String, yFields As String, otherFields As String)
參數
- dataSource
- IEnumerable
資料來源。
- xField
- String
X 值欄位的名稱。
- yFields
- String
以逗號分隔之 Y 值欄位的名稱。
- otherFields
- String
其他含繫結規則的資料點屬性格式如下:PointProperty=Field[{Format}] [,PointProperty=Field[{Format}]]。
例如 "Tooltip=Price{C1},Url=WebSiteName"。
備註
資料來源可以是 Ole (SQL) DataReader、DataView、DataSet、DataTable 或 DataRow。