hi ,
I want to scroll the collection of LayoutControlTabGroupItems when i have many Items displayed In the "LayoutControlTabGroup" like "RadTabControl"
so, how to do??
thx

Hello Telerik,
We came across a scenario which we need to add a tooltip containing a UserControl to a tooltip of a grid's cell.
Can you please point me to the right direction?
Thank you

I always see CategoricalAxis being used on the X-Axis, however, I would like to plot multiple series based on Categories on the Y-Axis and have DateTime on the X-Axis.
How would I go about plotting:
var points = new ObservaleCollection<MyPoint>()
{
(new MyPoint(){ Category = "ID1", Time = now }),
(new MyPoint(){ Category = "ID2", Time = now }),
(new MyPoint(){ Category = "ID3", Time = now + 1 }),
(new MyPoint(){ Category = "ID1", Time = now + 1 }),
(new MyPoint(){ Category = "ID2", Time = now + 2 }),
etc, etc
};
I attached an image that shows what I'm trying to accomplish.

Hi,
I have a gridview that I have marked as readonly because I *only* want the user to be able to edit/add data via my rowdetails editor. According to the doc if I have the gridview marked as readonly they can't add a new row. I'm stuck. I need a way to add a row and have the user enter the new info via the rowdetails datattemplated editor. Any ideas?
Thanks ... Ed
I am trying to use a Labeltemplate on a DateTimeContinuousAxis but the texts are not located correctly on the axis. I am using the following WPF:
<telerik:RadCartesianChart.HorizontalAxis> <telerik:DateTimeContinuousAxis MajorStep="{Binding CategoryAxisMajorStep}" MajorStepUnit="{Binding CategoryAxisMajorStepUnit}" LabelFitMode="Rotate"> <telerik:DateTimeContinuousAxis.LabelTemplate> <DataTemplate> <TextBlock> <TextBlock.Text> <MultiBinding Converter="{StaticResource DateTimeToStringTelerikChartMultiConverter}"> <Binding/> <Binding Path="DataContext.DateTimeFormat" RelativeSource="{RelativeSource FindAncestor, AncestorType={x:Type UserControl}}"/> </MultiBinding> </TextBlock.Text> </TextBlock> </DataTemplate> </telerik:DateTimeContinuousAxis.LabelTemplate> </telerik:DateTimeContinuousAxis></telerik:RadCartesianChart.HorizontalAxis>The chart looks as the attached file.
Can you help me to correctly display the labels.

Hello,
each time I click a link on the offline documentation, there is an error message that says:
This
page can’t be displayed
Make sure the web address //ieframe.dll/dnserrordiagoff.htm# is correct.
Look for the page with your search engine.
Refresh the page in a few minutes.
Hello,
In my project,the font of shape shown wrong in windows7,but in windows10,it shown right.
So I want to change the FontFamily list of the setting pane,how can I do it?
I am trying to show a ToolTipTemplate for LineSeries but don't get it to work.
If I try with Bar series instead it works just fine.
Code in xaml.cs file
private CartesianSeries CreateLineSeries(List<GraphPointDto> items, Brush brush)
{
var series = new LineSeries()
{
ItemsSource = items,
Stroke = brush,
ValueBinding = new PropertyNameDataPointBinding("Value"),
CategoryBinding = new PropertyNameDataPointBinding("DateTime"),
TooltipTemplate = this.Resources["MyToolTipTemplate"] as DataTemplate,
};
return series;
}
Code in xaml