I am using an HtmlFormatProvider to export HTML from a RichTextBox to a database field that eventually gets used in a report for SSRS. Thanks to the many settings available in HtmlExportSettings, I've been able to get very close to a format that works with SSRS. The biggest problem I have remaining is that the SSRS docs specifically state that font-size specified in 'px' units are not supported. Yet those are the only units I've been able to get the HtmlFormatProvider to export the font-size.
Is there a way to change the units used in the font-size when exporting HTML?
Thank you!
Hi,
I want to use Pan without press Ctrl. I have reach this result using the advice from the following thread
http://www.telerik.com/forums/pan-without-ctrl-being-pressed
Now, I want to improve this functionality and when I select one or more shapes and/or connections I want to deselect them when I click out of the select area. Is there a way to reach this result?
Thanks
Ciro
Seems it is impossible to use RadTabItem.HeaderTemplate if RatTabControl is not binded to collection.
Using Snoop i see that template itself is applied but DataContext is null. So any binding don't work in the template.
http://docs.telerik.com/devtools/wpf/controls/radtabcontrol/templating/item-templates-and-selectors say "The HeaderTemplate is mainly used when we bind the RadTabControl to a collection". ). It doesn't say that it is used ONLY for collection.
HeaderForeground seem is ignored completely. Using Snoop i see that foreground is taken from some resources if i don't use HeaderTemplate.
Hello,
I have a ScatterPointSeries which contains multiple points and I want to display histograms on both x and y axis of my plot. the histograms should be synched with the scatter points.
I have used bar series with additional categorical axis (which is wrong) because linear axis of scatter points and categorical axis of histogram are not synchronized as shown in figure.
I have also tried to use ScatterPointSeries with point template as rectangle but it is also not giving me the desired result.
Please help me in this matter.
Hi, I am trying to figure out if I can safely use telerik wpf controls in a partial trust wpf web application. I have read in the documentation that not all controls are compatible in this mode, and certain restrictions apply.
I have tried certain controls like menu and docking in a prtial trust application, just plain vanilla code defining these controls in XAML, but the application fails on trying to start degugging with no specific message. IfIa switch the application trust mode to a full trusted one everything works fine.
My question is therefore if I am able to use certain specific telerik controls like docking, and datagrid at all in a partial trust application which is my requirement, and if so where I can find more specific intructions.
Regards,
George
Hello,
I'd like to restrict the size of my POI'S Datatemplate to be only shown in an explicit area so it won't get any bigger than this area.
Maybe a LocationRect would be given and my DataTemplate automatically expands and fills this Rect.
Can you tell me if there is a way to achieve anything similar to my requirements?
See a simplified version of my DataTemplate below:
<
DataTemplate
x:Key
=
"ResizableTemplate"
>
<
Grid
x:Name
=
"ParentRoot"
Background
=
"Transparent"
telerik:MapLayer.Location
=
"{Binding Path=Location}"
>
<
StackPanel
Orientation
=
"Vertical"
>
<
TextBlock
Text
=
"{Binding Path=Title}"
/>
<
TextBlock
Text
=
"{Binding Path=Description}"
/>
</
StackPanel
>
</
Grid
>
</
DataTemplate
>
VisualizationLayer:
<
telerik:VisualizationLayer
x:Name
=
"POILayer"
ItemsSource
=
"{Binding POICollection}"
ItemTemplate
=
"{StaticResource ResizableTemplate}"
/>