Hello all,
What would be my best option to create a chart like the one in the attached image?
Thanks,
Luis Barreira
We are about to use the Ribbon menu from the Telerik WPF toolkit along with the RadDiagram control.
Our application will be designed similar to the "FirstLook"-demo application in the Diagrams section in the Demos app, where the user should be able to add objects, text and lines and arrange them (send to back, bring to front, align etc).
The functionality is basically in place but our question is if the icons in the demo application is avalable anywhere if you have the Telerik for WPF licences? Are you free to use them and where are they located? If not, do Telerik for WPF have a icon library that could be used in the Ribbon menu?
I can select properly the text in my PdfViewer when i don't scroll down the document.
But when i'm scrolling down, the cursor seems to select the text which was at the opening of the pdfViewer. I can't select more than the top of the document that appear at the opening of the PdfViewer.
And When i scroll down, it keeps select me the top of the document.
hi when I'm wanna to add data to empty database with raddataform add new button
I take this error when I press on add raddataform button
An unhandled exception of type 'System.ArgumentNullException' occurred in System.Core.dll
Additional information: Value cannot be null.
Hi,
i would like to localize the RadDataPager.
I have use your Example: "Localization using ResourceManager"
This works only with the ResourceKey: RadDataPagerEllipsisString. The other two Keys RadDataPagerOf and RadDataPagerPage dont work.
Do you have a Solution for this Problem.
I also have tested it with a CustomResourceManager. The Problem is the same.
thanks Markus
While entering "I've" into RadRichTextBox, only "ve" is checked.
Is it possible to check the word which contains as apostrophe?
Thanks.
Beata
<
Grid.Resources
>
<
DataTemplate
x:Key
=
"ProductionItemTemplate"
>
<
Rectangle
Height
=
"50"
HorizontalAlignment
=
"Stretch"
Fill
=
"Red"
Margin
=
"0"
>
</
Rectangle
>
</
DataTemplate
>
<
DataTemplate
x:Key
=
"NonProductionItemTemplate"
>
<
Rectangle
Height
=
"50"
HorizontalAlignment
=
"Stretch"
Fill
=
"Green"
Margin
=
"0"
>
</
Rectangle
>
</
DataTemplate
>
<
local:CustomItemTemplateSelector
x:Key
=
"CustomItemTemplateSelector"
NonProductionItemTemplate
=
"{StaticResource NonProductionItemTemplate}"
ProductionItemTemplate
=
"{StaticResource ProductionItemTemplate}"
/>
</
Grid.Resources
>
<
telerik:RadTimeline
x:Name
=
"RadTimeline1"
PeriodStart
=
"2016/01/01"
PeriodEnd
=
"2016/01/02"
StartPath
=
"StartDate"
DurationPath
=
"Duration"
ItemRowIndexGenerator
=
"{StaticResource NewLineRowIndexGenerator}"
ItemsSource
=
"{Binding Data}"
ItemTemplateSelector
=
"{StaticResource CustomItemTemplateSelector}"
>
<
telerik:RadTimeline.Intervals
>
<
telerik:HourInterval
/>
</
telerik:RadTimeline.Intervals
>
</
telerik:RadTimeline
>
I'm implementing a quite complex filter definition. I have to add a custom filter with 2 controls in it
Starting from this sample http://demos.telerik.com/silverlight/#DataFilter/CustomEditors
The class I'm using to save the values is this:
public class DeltaTime
{
public TimeSpan Start { get; set; }
public TimeSpan End { get; set; }
}
And the xaml template is:
<DataTemplate x:Key="DeltaTimeTemplate">
<StackPanel Orientation="Horizontal" DataContext="{Binding Value, Mode=OneWay}">
<telerik:RadTimePicker SelectedValue="{Binding Start, Mode=TwoWay, FallbackValue={x:Null}}" DateTimeWatermarkContent="Start" />
<telerik:RadTimePicker SelectedValue="{Binding End, Mode=TwoWay, FallbackValue={x:Null}}" DateTimeWatermarkContent="End" />
</StackPanel>
</DataTemplate>
It seems working, or at least the controls is displayed correctly. But, when I'm passing all filters, this filter value is <Unset>