I have created a report, completely wihin the designer. This report contains several graphs, wiyh on the x-axis the month-nr's. To achieve better readability, I want to convert the month-numbers to month-names. I have created a method:
This methods works fine when used in a table, but now I want to convert the x-axis labels of several graphs.
At this moment i really don't know which code and where to put this code to change the x-axis?
I can change parameters like axis-labels programmatically, but not convert axis values?
i'm using Telerik Reporting 2011 Q3
public
static
string
NRToMonth(
int
nr)
{
string
month =
""
;
switch
(nr)
{
case
1:
month =
"jan"
;
break
;
case
2:
month =
"feb"
;
break
;
This methods works fine when used in a table, but now I want to convert the x-axis labels of several graphs.
At this moment i really don't know which code and where to put this code to change the x-axis?
I can change parameters like axis-labels programmatically, but not convert axis values?
i'm using Telerik Reporting 2011 Q3