Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
535
Labels in BarChart
posted

Hi,

just startet to setup a little BarChart with two rows:

FolderTable.Columns.Add("Labels", typeof(string));
FolderTable.Columns.Add("Value", typeof(int));

FolderTable.Rows.Add("Backup", 450);
FolderTable.Rows.Add("Download", 500);

After binding the DataSource the Chart shows always the "Value" AND Backup and Download

I want to see the first column (backup,download) instead of Value ..

Seems too be very simple. Perhaps someone gives me the hint to solve..

Thanks!!

Torsten