Hi, is there a way to produce something similar to the following
https://resourcetrade.earth/data ?
Thank you
We are trying to display a distribution line chart. Behind it, we would like shaded areas to indicate P10, 25,50,75, 90 similar to the rough sketch below. How would we accomplish that background shading with htmlchart?
Thanks.
This works:
<ResourceTypes>
<telerik:ResourceType KeyField="id" Name="Vragenset" TextField="description" ForeignKeyField="VragensetID"
DataSourceID="sds_vragenset"></telerik:ResourceType>
<telerik:ResourceType KeyField="id" Name="Project" TextField="description" ForeignKeyField="ProjectID"
DataSourceID="sds_project"></telerik:ResourceType>
</ResourceTypes>
But this is not working:
<ResourceTypes>
<telerik:ResourceType KeyField="id" Name="VragensetID" TextField="description" ForeignKeyField="VragensetID"
DataSourceID="sds_vragenset"></telerik:ResourceType>
<telerik:ResourceType KeyField="id" Name="ProjectID" TextField="description" ForeignKeyField="ProjectID"
DataSourceID="sds_project"></telerik:ResourceType>
</ResourceTypes>
Mind that I names the Name the same as ForeignKeyField. Is this a bug or by design?
Marc

I am troubleshooting a program that someone else wrote and there is a grid that is missing a few column headers upon export to excel. The column headers and data showed up on screen but not on excel export. The first few columns would have headers and the rest of the columns displayed data but no headers. In the method that gets called by OnItemCommand, I have tried changing the header text by doing this:
gridMasterTableView.GetColumn(I).HeaderText = I;
but it doesn't seem to change anything on the excel.
In the method that is called by OnItemDataBound I tried to put a breakpoint on this line:
GridHeaderItem header = (GridHeaderItem)e.Item;
In the GridHeaderItem I noticed it only has a few of the columns.
I just want to fill the missing column headers. Is there a good place where I can access the datatable that gets exported to excel and put in the headers? In other words, if I only want to control what column name to put on excel export without touching the original source data, what would be a good place to do it and how to go about doing that?
Thanks.

We have a project that we store the connection string in a session (in page load).
When using the radscheduler reminder function it works for the first time but after that the Scheduler stops functioning and returns the error that connection string has not been initialized. Keep in mind we cannot change the way we use the connection string and we need to keep it stored in the session.
Has anyone faced the above problem before? Thanks in advance
I am trying to bind a List as the database for my RadGrid and I am getting the following error "Cannot find any bindable properties in an item from the datasource" although I have made sure and tested that the data source is returning valid data.
<telerik:RadGrid ID="grdTest" runat="server" AutoGenerateColumns="true" ShowStatusBar="True" OnNeedDataSource="grdTest_NeedDataSource" > <MasterTableView AutoGenerateColumns="true" > </MasterTableView></telerik:RadGrid>
protected void grdTest_NeedDataSource(object sender, GridNeedDataSourceEventArgs e){ int ParentRulCode = 2611767; List<Enrolment> MyEnrol = EnrolmentRepository.GetChildEnrolmentsFromRulCode(ParentRulCode); grdTest.DataSource = MyEnrol;}
Here is My Enrolment Class
public class Enrolment{ public Course MC; public Person MP; public int RulCode; public DateTime StartDate; public DateTime EndDate; public string ProgressStatus;}
Is there any support to use the FontAwesome icons in the menus?
It looks like it might be possible to use templates to do this. I am creating the menus and items with code and cannot find good information about how to approach this. Is there anyone with a working implementation of FontAwesome icons?
