Please find the actual output of the chart in the image LineChartImage_Actual.jpg. In that, the "Custom" value starts at 5:00 AM and Ends at 6:00 AM. And "MyFiles" starts at 9:00 AM and ends at 9:30 AM. Again "Custom" starts at 9:30 AM and Ends at 10:00 AM.
I want to join the point mark of "MyFiles" at 9:30 AM and the point mark of "Custom" at 9:30 AM. And in the same way join the point mark of "Custom" at 10:00 AM and point mark of "Music" at 10:00 AM as these are adjacent point Marks in order to show a series of activities done as shown in the LineChartImage_Expected.jpg.
Please help to achieve my above requirement. Else advise me to use the relevant chart. Thanks in advance.
The code which i used is given below.
<telerik:RadChart ID="RadChart1" runat="server"
TempImagesFolder="~/_Layouts/TelericChartsTemp" UseSession="False"
DataSourceID="XmlDataSource1">
5. Gave write permission to the application pool account to the /_Layouts/TelericChartsTemp folder
| <telerik:GridTemplateColumn UniqueName="firstname" > |
| <ItemTemplate> |
| ... |
| </ItemTemplate> |
| <FilterTemplate> |
| <asp:textbox runat="server" id="txtBox1" text=""/> |
| </FilterTemplate> |
| </telerik:GridTemplateColumn> |
<telerik:RadGrid runat="server" ID="rgrDocuments" Skin="Office2010Blue" Height="30%"
ShowStatusBar="True" AllowFilteringByColumn="True" AutoGenerateColumns="false"
CellSpacing="0" GridLines="None" ShowGroupPanel="True"
oncolumncreated="rgrDocuments_ColumnCreated"
onitemcommand="rgrDocuments_ItemCommand">
<GroupingSettings CaseSensitive="false"/>
<ClientSettings AllowDragToGroup="True">
<Selecting AllowRowSelect="true" />
</ClientSettings>
<MasterTableView Width="100%" >
<Columns>
<telerik:GridTemplateColumn AllowFiltering="false">
<ItemTemplate>
<asp:ImageButton runat="server" ID="btnDownload" CommandName="cmdDownload" ImageUrl="~/Images/down.png" Height="24px" Width="24px" />
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn AllowFiltering="false">
<ItemTemplate>
<asp:ImageButton runat="server" ID="btnDelete" CommandName="cmdDelete" ImageUrl="~/Images/elimina.png" Height="24px" Width="24px" />
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridBoundColumn Visible="false" DataField="N" UniqueName="N°" HeaderText="Anno" AutoPostBackOnFilter="true" CurrentFilterFunction="StartsWith" ShowFilterIcon="false"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="MES" UniqueName="Tipo" HeaderText="<%$ Resources:Documenti, docu_GriTipo %>" AutoPostBackOnFilter="true" CurrentFilterFunction="StartsWith" ShowFilterIcon="false"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="CIT" UniqueName="Nome" HeaderText="<%$ Resources:Documenti, docu_GriNome %>" AutoPostBackOnFilter="true" CurrentFilterFunction="StartsWith" ShowFilterIcon="false"></telerik:GridBoundColumn>
</Columns>
</MasterTableView>
<FilterMenu EnableImageSprites="False">
</FilterMenu>
<HeaderContextMenu CssClass="GridContextMenu GridContextMenu_Windows7">
</HeaderContextMenu>
</telerik:RadGrid>
protected void rgrDocuments_ItemCommand(object sender, GridCommandEventArgs e)
{
if (e.CommandName == "cmdDownload")
{
GridDataItem item = e.Item as GridDataItem;
byte[] array = RecuperaBlobDocumento(short.Parse(item["N°"].Text));
string fileName = RecuperaNomeFile(short.Parse(item["N°"].Text));
Response.Clear();
Response.ContentType = "application/octet-stream";
Response.AppendHeader("Content-Disposition", "attachment; filename=" + fileName);
Response.BinaryWrite(array);
Response.End();
}
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1"> </telerik:RadAjaxManager> <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Office2010Black"> </telerik:RadAjaxLoadingPanel> <telerik:RadAjaxPanel ID="RadAjaxPanel1" LoadingPanelID="RadAjaxLoadingPanel1" runat="server" > <asp:ContentPlaceHolder ID="Body" runat="server"/> </telerik:RadAjaxPanel>