This question is locked. New answers and comments are not allowed.
Hi,
I'm using a radChart (pie) for a small datasource. The dataset looks like this:
gebruiker totaal
Kevin 11
Joeri 14
Ken 34
Now I want to see the pie, with a legend wich color is for wich name. I think this something easy to do, but I'm now trying for 3hours already and still cannot find it :(
If it can helps, this is how I make my Test DataSet:
I'm using a radChart (pie) for a small datasource. The dataset looks like this:
gebruiker totaal
Kevin 11
Joeri 14
Ken 34
Now I want to see the pie, with a legend wich color is for wich name. I think this something easy to do, but I'm now trying for 3hours already and still cannot find it :(
If it can helps, this is how I make my Test DataSet:
| GrafiekData grafiekLijst = new GrafiekData(); |
| GrafiekData.GrafiekDataRow newGrafiekRow; |
| newGrafiekRow = grafiekLijst._GrafiekData.NewGrafiekDataRow(); |
| newGrafiekRow.gebruiker = "Kevin"; |
| newGrafiekRow.totaal = 789; |
| grafiekLijst._GrafiekData.Rows.Add(newGrafiekRow); |
| GrafiekData.GrafiekDataRow newGrafiekRow2; |
| newGrafiekRow2 = grafiekLijst._GrafiekData.NewGrafiekDataRow(); |
| newGrafiekRow2.gebruiker = "Ann"; |
| newGrafiekRow2.totaal = 129; |
| grafiekLijst._GrafiekData.Rows.Add(newGrafiekRow2); |