UltraChart1.DataSource = ds;
UltraChart1.DataBind();
How can I have more control over the Legend?
It just says "Row #0" "Row #1"
Instead I want it to say "Unique ID 1" or something other than "Row #0"
The legend displays the column or row labels by default. If you have a column in your data that can be used for row labels, you can use that by specifying the index of that column:UltraChart1.Data.RowLabelsColumn = 1;UltraChart1.Data.UseRowLabelsColumn = true;