DataSet into MSChart

  • Thread starter Thread starter M Murschell
  • Start date Start date
M

M Murschell

In VB.Net, I have a DataSet called DataSet11, with some data that I want to
chart. It has two fields, Month and EmployeeCount. I added a MSChart
(Microsoft Chart Control 6.0).

How do I get the data that is in the DataSet into the Chart?

Thank you for your help.
 
M Murschell said:
In VB.Net, I have a DataSet called DataSet11, with some data that I
want to chart. It has two fields, Month and EmployeeCount. I added a
MSChart (Microsoft Chart Control 6.0).

How do I get the data that is in the DataSet into the Chart?

Thank you for your help.

As you use the MSChart control, you should also have it's documentation
coming with VB6. The chart control is described here:

MSDN Library Visual Studio 6.0
Visual Basic-Documentation
Working with VB
Component guide
Using ActiveX controls
Using the MSChart control

There's also described, how to add data to be displayed to the control.
 
Back
Top