Greetings,
Is it possible to disable System, Web or Professional tab in colorbox dialog ?
Hello everyone,
I have a problem, please help me solve it.
How to realize the function of GridView, item (8, a) in GridView with RadGridView control.

Can anyone help me identify which color setting needs to be changed if I want to change the (background?) color of the items in a CheckedDropDownList? The default is an orange color that I'm not a big fan of.

Hi,
I need to disable the right click Context Menu for RadSpinEditor. I tried a lot but could not able to disable it.. Can someone anyone help for this?
Hi
Using a RadBrowseEditor, how can I change at runtime (using code) the ForeColor of the text when control is disabled?
Hi ,
I am using the relational gridview. when i click the button , i want the node will be expanded by condition . Follow the link : https://docs.telerik.com/devtools/winforms/controls/gridview/hierarchical-grid/how-to/expanding-all-rows . is it the best way to do it ? because i see it is really slow when expanding.
void ExpandAllRows(GridViewTemplate template, bool expanded) {
foreach(GridViewRowInfo row in template.Rows) {
if(row.Tag == conditionID){
row.IsExpanded = expanded;
}
}
if (template.Templates.Count > 0) {
foreach(GridViewTemplate childTemplate in template.Templates) {
ExpandAllRows(childTemplate, true);
}
}
}
DateTimeCategoricalAxis categoricalAxis = new DateTimeCategoricalAxis(); categoricalAxis.PlotMode = Telerik.Charting.AxisPlotMode.BetweenTicks; categoricalAxis.DateTimeComponent = Telerik.Charting.DateTimeComponent.Hour; categoricalAxis.LabelFormat = "{0:HH:mm}"; foreach (RadCheckedListDataItem item in radCheckedDropDownListDates.CheckedItems) { List<MonitoringToolDomain.FILESPROCESSED> queryChart = new List<MonitoringToolDomain.FILESPROCESSED>(); queryChart = MonitoringToolCore.FilesProcessed.QueryLineChart((DateTime?)item.DataBoundItem, fromHour, toHour); queryChart.Select(c => { c.DATETIME = CreateDateFromTime(2015, 12, 12, c.DATETIME); return c; }).ToList(); LineSeries test = new LineSeries { DataSource = queryChart, ValueMember = "AMOUNT", CategoryMember = "DATETIME", IsVisibleInLegend = true, LegendTitle = item.DataBoundItem.ToString() //CombineMode = Telerik.Charting.ChartSeriesCombineMode.None }; test.HorizontalAxis = categoricalAxis; radChartView.Series.Add(test); } radChartView.ShowLegend = true;}
I have a second problem, not sure if I should post it here but I don't want to create too many new threads. I would like to compare charts from different days as in my second attached picture. If I create different line series, the charts appear sequentially because they don't have the same date. The solution I'm using at the moment is to change the DATETIME parameter in all of my objects to have the same date part. Is there any other way to do this ?
What I'm doing now :
queryChart.Select(c => { c.DATETIME = CreateDateFromTime(2015, 12, 12, c.DATETIME); return c; }).ToList();

