Hi,
I'm pretty new at the Telerik reporting functionalities.
I'm trying to build up a report source using an object model.
the chart should look like this:
X-axis: month1, month2, ... month12 (date objects)
Y-axis: 0 to 100%
I have a few separate lines to display on this chart (one per location)
I tried an object with the following properties
and
But none showed anything usable.
Can anyone give any tips on how to build up my object so it will display the correct data?
I'm pretty new at the Telerik reporting functionalities.
I'm trying to build up a report source using an object model.
the chart should look like this:
X-axis: month1, month2, ... month12 (date objects)
Y-axis: 0 to 100%
I have a few separate lines to display on this chart (one per location)
I tried an object with the following properties
public
string
Location {
get
;
set
; }
public
Dictionary<DateTime,
decimal
> Values {
get
;
set
; }
and
public
string
Location {
get
;
set
; }
public
DateTime Month {
get
;
set
; }
public
decimal
Value {
get
;
set
; }
But none showed anything usable.
Can anyone give any tips on how to build up my object so it will display the correct data?