How to Bind UltraCharts on Infragistics Controls
Infragistics is a developer platform that allows programmers to add basic controls and components to .NET and Visual Basic code. One such feature is the UltraChart, a chart that accesses a data file and displays results graphically. If you want your UltraChart to appear with a control that you use in your code, you may “bind” that chart to the control. The process requires the “DataBind” command.
Instructions
-
-
1
Open your code in Infragistics. To do so, open the program, select "Open" from the "File" menu, browse to the code file, then click "Open."
-
2
Click the control you want to use in the toolbar. The code will appear in the space below.
-
-
3
Scroll to the place in the code where you want UltraChart to appear.
-
4
Start a new line in the code with "DataBind(X)."
-
5
Replace the "X" with the name of your UltraChart.
-
6
Click “Apply” to run the code and internally bind the UltraChart. To remove it later, you simply have to delete the "DataBind" line.
-
1