Axis Requirements for Composite Charts The table below outlines the requirements for each axis in a chart that is used as a layer of a Composite chart. If any of the requirements are not met, the Composite chart will not render. For information on how to create a Composite chart, see Creating a Composite Chart. No...
Bar Chart Clicking the links below will lead you to important information about 2D bar charts: About 2D Bar Charts — Gives you a brief description of 2D bar charts, and explains why you would want to use them. Working with 2D Bar Chart Data — Provides information on the type of data necessary to generate 2D bar ch...
Bar Chart Clicking the links below will lead you to important information about 3D bar charts: About 3D Bar Charts — Gives you a brief description of 3D bar charts, and explains why you would want to use them. Working with 3D Bar Chart Data — Provides information on the type of data necessary to generate 3D bar ch...
Bind a Treemap Chart to a TreeMapSeries Object You can bind your treemap chart to a TreeMapSeries object. Each node on your treemap chart is represented by a TreeMapDataPoint object. If the TreeMapDataPoint is a leaf node, then you can modify the SizeValue and ColorValue properties of the corresponding TreeMapData...
Binding to a DataSet, DataView, or DataTable Some of the data sources that you can bind the Chart control to are the DataSet, DataTable, and DataView. Creating the DataTable The code below shows you how to create the DataTable in code. However, the procedure is essentially the same for binding Chart to the DataSet...
Binding to an Array One of the data sources that you can bind the Chart control to is an Array. The following example code demonstrates how to bind the Chart control to an array. In Visual Basic: In C#:
Binding to an XML File One of the data sources that you can bind the Chart control is an XML file. To bind the Chart control to XML data, the XML must follow the schema requirements of an ADO.NET data set, and the XML must have the ability to be read using the DataSet.ReadXml method. To bind Chart to an XML file: ...
Binding to Classes Derived from CollectionBase One of the data sources that you can bind the Chart control to is classes that you derived from the CollectionBase. To bind Chart to a class derived from CollectionBase: First, you will need a class that you will be adding to the CollectionBase. For this example we wi...
Binding to IBindingList or IList One of the data sources that you can bind the Chart control to is IBindingList. IBindingList is an interface derived from IList, ICollection, and IEnumerable, and provides a number of members that support data binding. One example of a class that implements IBindingList is DataView...
Binding to WinDataSource One of the data sources that you can bind the WinChart™ control is the WinDataSource component. This topic will guide through the steps to bind your chart to WinDataSource. Note Note To learn how to work with the WinDataSource component, see Using the WinDataSource Designer. Set up your Wi...