Normal 0 21 false false false MicrosoftInternetExplorer4
As I can change the name of my x-axis data in a column or datasource.
ejem: colum #0 , column #1, column#2... to january, febrary, march...
thanks for your help
serveq@hotmail.com --> Marco
I appreciate your help, but I think I explained wrong. I need to make a graph the contents of a column in a Grid or datasouce
Normal 0 21 false false false MicrosoftInternetExplorer4 I have this in visual Basic 2008
da = New SqlDataAdapter(sSel, sCnn) da.Fill(dt)
for the chart
ChartProduc.DataSource = dt ChartProduc.Refresh()
and for the grid...
UltraGrid.DataSource = dt UltraGrid.Refresh()
but as I can control the graphics filters for the date. Example: A graphic of the year (January, February ...). a graph of the month (week 1, week 2 ...) In my table I have many columns to it (date, month, week, day, etc.), but as I send my data to the chart in every bar ...
I apreciate your help...thanks a lot
serveq@hotmail.com
marco.gallegos@evsacorp.com.mx
Hi,
I still not sure I understand correctly.
You can include/exclude specific column with:
this.ultraChart1.Data.IncludeColumn(2, false);
You can also swap the rows and columns:
this.ultraChart1.Data.SwapRowsAndColumns = true;