hi,
i'm using control RadHtmlChart wich i bind it programaticly
this is part of my code and in the pic the data don't display i dont know why plz help me i'm using gridview to make sure if i have data in datatable and it works
string req = " select time_tag,[ain_sebou|niveau] from QTSW_DATA1 where time_tag between '15/01/2015 10:49:59' AND '15/02/2015 10:49:59'";
Connecter();
if (DS.Tables.Contains("TRChart"))
{
DS.Tables.Remove("TRChart");
}
SqlDataAdapter da = new SqlDataAdapter(req, con);
da.Fill(DS, "TRChart");
Deconnecter();
RChart.DataSource = DS.Tables["TRChart"];
RChart.DataBind();
ScatterLineSeries SL = new ScatterLineSeries();
SL.DataFieldX = "time_tag";
SL.DataFieldY = "ain_sebou|niveau";
RChart.PlotArea.Series.Add(SL);
RChart.PlotArea.XAxis.TitleAppearance.Text = "Date Time";
RChart.PlotArea.YAxis.TitleAppearance.Text = "Value Of AIn Sebou";
// here i bind Gridview
Gridview1.DataSource = DS.Tables["TRChart"];
Gridview1.DataBind();
plzz i need help
Hi there,
We're using Org Chart with enable drill down and load on demand and data bind in code behind file.
Org Chart also have zooming feature ON.
When exporting char to pdf it only show NODES but there in not links/lines between nodes.
But if we disabled zooming it work well.
Any idea please?

Hi,
Im having an issue trying to bind to a linq anonymous type. I can bind find as long as i don't specify a 'DataFieldParentID', if i specify that DataFieldParentID then the dropdowntree control just displays no items.
So if i comment out the line below: rdt.DataFieldParentID = "ParentID"; then the control loads fine with the options i expect and i am able to select and use them fine, it simply seems to be an issue when trying to create a hierarchy.
My drop down tree control is inside a RadListView and i am binding on the ItemDataBound event, my code for binding if the following:
var x = from y in services select new { ID = y.ID, ParentID = y.PrimaryWorkType.ID, myText = y.Description};RadDropDownTree rdt = (RadDropDownTree)e.Item.FindControl("ddlAffectedServices");rdt.DataTextField = "myText";rdt.DataValueField = "ID";rdt.DataFieldID = "ID";rdt.DataFieldParentID = "ParentID";rdt.DataSource = x;rdt.DataBind();

Good Day
Please help,
How can i format the date when exporting treelist data to excel, using Telerik version 2013.3.1324.40.

function
EnableDisable() {
button2 = document.getElementById("RadButton2_input");
button2.disabled = false;
}
Private Sub RadGrid1_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.ItemCommandIf e.CommandName = RadGrid.EditCommandName Then Dim editItem As GridEditableItem = CType(RadGrid1.MasterTableView.GetItems(GridItemType.EditItem)(0), GridEditableItem) For Each column As GridColumn In RadGrid1.MasterTableView.Columns If column.UniqueName = "POL" Then Dim txtbox As TextBox = CType(editItem (column.UniqueName).Controls(0), TextBox) txtbox.ReadOnly = True End If NextEnd IfEnd SubIf e.CommandName = RadGrid.EditCommandName Then Dim editItem As GridEditableItem = CType(RadGrid1.MasterTableView.GetItems(GridItemType.EditItem)(0), GridEditableItem)