I'm working with a Telerik report that I'm creating dynamically at runtime. The report has a Telerik.Reporting.Graph with a single line series. Works great - the problem is, I need to mark and label certain points along the curve.
I have the marker data, that is I know exactly where I need them - I just don't know how to do it. Any suggestions?
For
i
As
Integer
= 1
To
SummaryData.GetUpperBound(0)
Dim
myItem
As
New
ChartSeriesItem(SummaryData(i).sValue)
If
SummaryData(i).sValue1 = 0
And
Me
.ReportParameters(
"HideZeros"
).Value
Then
myItem.Label.Visible =
False
myItem.Empty =
True
End
If
myItem.ActiveRegion.Tooltip = SeriesName(2)
chartSeries1.AddItem(myItem)
Next
Hello Telerik Team!
I have a report in which I would like to use conditional formatting to change the background color of rows in a table based on a change in the value of one of the columns. Something similar to this example in Excel: http://superuser.com/questions/553899/alternate-grid-background-color-in-excel-when-a-value-of-a-single-column-changes
Is there a way to do this in the Edit Expression Dialog in Telerik Reporting Q3 2014?
Thanks so much!
Hi,
I would like my line chart series to start in the bottom left corner 0,0. Please see the attached pic.
Thanks in advance.
Telerik Reporting 2013 Q2 SP1
Hello,
I need to generate a pdf which will have some static content in two columns however there are some content which need not to be displayed in two columns fashion.
I have tried to achieve the same using ColumnCount property of the Report but it doesn't play nice with content which need to displayed in single column. So if there any way to specify Column Count property for specific content of the report, not the entire report?
I have attached screenshot of a sample pdf which has structure similar to the one I want to generate.
Thanks,
Bhavik
Application Type: ASP.NET
Telerik version: Telerik Report Q1 2014
Dev environment: Visual Studio 2013
I am trying to create a chart using a stored proc as the data source. I can create a table using the data without a problem however when I create a chart it throws an error referencing a temp table I use in my SP. "An error occured while processing Chart 'Chart1' Invalid Object name '#Temp_StatsTable' "
Any input or direction would be much appreciated!
Thank you
public
class
ReportManagementPage : Page
{
protected
void
Page_Load(
object
sender, EventArgs e)
{
Report report =
new
MyReport();
report.Name = Request.QueryString[
"reportName"
];
report.DocumentName = Request.QueryString[
"reportName"
];
reportViewer.Report = report;
}
}