Hi Guys!
Title says it all, how to I change background color of the title bar. (see image)?
(if the answer involves this article https://docs.telerik.com/devtools/wpf/styling-and-appearance/styling-apperance-editing-control-templates,
please be specific to what file Im should change in, Im new to Telerik)
Thanks in advance, Robert
In our application we use the autogenerate property grid fields mechanism. The property grid is located in a radpane (RadDocking) like in visual studio. The LabelColumnWidth of the property grid is set to 100px.
We have the problem that long string values (f.i. file paths) in the property grid value column cause horizontal scrolling. Is there any possibility to disable the horizontal scrolling if the values of property fields are to long for the field?
We would like to have an autoresizing property grid. If the user increases the size of the dock the label column stays on 100px while the value column width increases to the the size: width of the RadPane - width of the column value.
That would be the behaviour I would expect.
Thanks and best regards,
Simon
Hi!
Исходный текст
Hi,
I increased the font size of a RadMenuItem in a RadContextMenu. This part works fine. However, if the RadMenuItem has a nested menu, then it has an expander icon which looks too small next to the large font. Is it possible to increase the expander icon?
Hi
Is there a simple way to obtain the Item Type of the items in the source collection of RadGridView?
I see that there is an Items.ItemType property, but this always seems to be null.
Thanks for any help.
Kind regards
Dave
Hello everyone,
I am currently stuck on a problem where edited appointments seem to get reset during the edit event chain.
Up until AppointmentSaving, everything looks normal. I set some breakpoints in my appointment's Start and End properties and both get updated to the new time. However, shortly after AppointmentSaving but before AppointmentEdited, the appointment's properties get reset to their previous state.
Through the aforementioned breakpoints, I was able to trace my problem down to the ScheduleView's EditableObjectBase class, more specifically its EndEdit() method, where a backup of the appointment's original state seems to be restored. Strangely though, CancelEdit() does not restore the state and leaves Start and End as is (in their edited state). Is this supposed to happen? I could not find any information about that behavior in the docs.
Hi, In telerik For my scatter point data (dynamically created in c#), I want to assign colors to each point dynamically by Point Template
as
var chart = new Telerik.Windows.Controls.RadCartesianChart();
ScatterPointSeries scatterSeries = new ScatterPointSeries();
for (int i = 0; i < 100; i++)
{
ScatterDataPoint point = new ScatterDataPoint();
point.XValue = xvaluelist[i];
point.YValue = yvaluelist[i];
scatterSeries.DataPoints.Add(point);
Brush color = new SolidColorBrush(colorlist[i]);
Ellipse ellipse = new Ellipse();
ellipse.Fill = color;
ellipse.Stroke = color;
ellipse.Height = 10;
ellipse.Width = 10;
DataTemplate datatemplate = new DataTemplate(typeof(Ellipse));
FrameworkElementFactory element= new FrameworkElementFactory(typeof(Ellipse));
element.SetValue(,); //Issue is here
datatemplate.VisualTree = element;
scatterSeries.PointTemplates.Add(datatemplate);
}
chart.Series.Add(scatterSeries);
element.SetValue accept two inputs that are dependencyproperty dp, object value
Hi, In telerik For my scatter point data (dynamically created in c#), I want to assign colors to each point dynamically by Point Template
as
var chart = new Telerik.Windows.Controls.RadCartesianChart();
ScatterPointSeries scatterSeries = new ScatterPointSeries();
for (int i = 0; i < 100; i++)
{
ScatterDataPoint point = new ScatterDataPoint();
point.XValue = xvaluelist[i];
point.YValue = yvaluelist[i];
scatterSeries.DataPoints.Add(point);
Brush color = new SolidColorBrush(colorlist[i]);
DataTemplate datatemplate = new DataTemplate(typeof(Ellipse));
FrameworkElementFactory element= new FrameworkElementFactory(typeof(Ellipse));
element.SetValue(,); //Issue is here
datatemplate.VisualTree = element;
scatterSeries.PointTemplates.Add(datatemplate);
}
chart.Series.Add(scatterSeries);
element.SetValue accept two inputs that are dependencyproperty dp, object value
What should be dependency property and object value in this case so that I could assign colors to each point as from my color list.
Is it possible to make the grouping so that it would be more like this instead of them side by side.:
Group 1 Header
Tiles wrapped
Group 2 Header
Tiles wrapped
Group 3 Header