_gideonChart.PlotArea.Appearance.FillStyle.MainColor = Color.White; | |
_gideonChart.PlotArea.Appearance.FillStyle.SecondColor = Color.White; | |
_gideonChart.PlotArea.YAxis.Appearance.MajorGridLines.Color = Color.Gray; | |
_gideonChart.PlotArea.YAxis.Appearance.MajorGridLines.Width = 1; | |
_gideonChart.PlotArea.YAxis.Appearance.MajorGridLines.PenStyle = DashStyle.Solid; |
Unfortunately the above code has no effect. Am I using the wrong properties? What are the right once then?
What else might prevent the changes from showing up?
Help would be highly appreciated.
Thanks in advance and kind regards,
Gerald
Hi
I configure the report with no DataSource and the following NeedDataSource event:
private void AnalisiSconfinamenti_NeedDataSource(object sender, EventArgs e) | |
{ | |
WSClass ws = new WSClass(); | |
List<Analisi> elenco = null; | |
elenco = ws.analisi(9, new DateTime(2008, 5, 20), new DateTime(2009, 5, 20)); | |
(sender as Telerik.Reporting.Processing.Report).DataSource = elenco; | |
} |
The method ws.analisi is the following
public List<Analisi> analisi(int id_cliente, DateTime fromData, DateTime toData) | |
{ | |
UnicaDataContext db = new UnicaDataContext(); | |
//linq query to db | |
var elencoFC = from e in db.Analisis ............ | |
return elencoFC.toList(); | |
} |
Hi,
I'm new using controls and finds them very useful for implement web applications .
Recently, I have made a sample web application that use ReportViewer to display a web report.
In Vs2008 every thing is ok and this report display correctly. But when access this report from browser, the report does not work.
i use form authentication and insert httphandler's declaration in both web.config sections:system.web , system.webServer
i have two folder in the sample site : root folder and admin folder with distinct special roles ( Role a for root folder and role b for admin folder ) . Every user should authenticate until can access to resources. Users that can access to Root folder, can use report without any problem, but users which have Role b and access to admin folder, can't run Report.
Does access to Telerik.ReportViewer.axd from admin folder have security challenge?
I want to develop some reports for User that have Role a and some reports for user that have role b, any advice?
I search the entire Reporting Forum, with no luck. May be missing something?
Please help me for solve this problem.
Thank you for taking the time to read this post .