I use the GridViewDataColumn.Footer to display some overall information.
With this code:
<telerik:GridViewDataColumn.Footer>
<TextBlock Text="{Binding RelativeSource={RelativeSource AncestorType=local:BaseModuleDetail, Mode=FindAncestor}, Path=DataContext.DataSum.Sum}" />
</telerik:GridViewDataColumn.Footer>
It works flawlessly. While our GridView has over 20 columns the user has to scroll to see through the whole content.
Only the Footer content of the firstly visible columns are rendered perfectly. After scrolling horizontally, the other footers content is empty.
The other column's footer row binding is correct and has valid data. (If I set the first 5 columns invisible, the next 5 columns, now visible within the viewport, are going to be rendered perfectly). Therefore, I have to assume this is a bug within the framework.
Telerik version: 2015.3.1104.45
I'm trying to find a way to render all text in a RadRichTextBox in a single font size, ignoring the document style(s).
Does anybody know of a place to start?
Thanks
Hi
I have a RadTreeListView with a custom column that is a RadLinearSparkLine, as follow
<telerik:RadTreeListView .......>
<telerik:GridViewDataColumn DataMemberBinding={Binding field1}....>
<telerik:GridViewDataColumn DataMemberBinding={Binding field2} ....>
<telerik:GridViewDataColumn DataMemberBinding={Binding field3} ....>
<telerik:GridViewDataColumn.CellTemplate>
<Datatemplate>
<telerik:RadLinearSparkLine ItemsSource={Binding DiccionaryWithTheValues} ....... />
</Datatemplate>
.....
.....
This works fine. It shows a grid with data and a graphic column based in the values from the "DiccionaryWithValues"
This grid needs to be exported to Excel. We use the Export method of the object RadTreeListView, but it doesn´t export correctly the RadLinear column. Instead of the chart, it exports a text wich represent a data type.
It is posible to export the chart with the Export method in anyway?????
Thanks
I have RadToggleButton's in my application and they are not following the style set in the mainview.
StyleManager.ApplicationTheme = new Office2016Theme();
Only when i explicetly set the theme like this, the theme is applied
<telerik:RadToggleButton telerik:StyleManager.Theme="Office2016" Margin="5,0,0,0" Width="35" Height="25" ToolTip="Enable Translation Mode" Visibility="{Binding TranslationModeVisible}" IsChecked="{Binding TranslationModeActive}">
<Grid>
<Image Width="25" Height="20" Source="/CSD.Global.Infrastructure;component/Images/report.png" Margin="0,-3,0,0"/>
</Grid>
</telerik:RadToggleButton>
I'm trying (and failing) to set up a RadCartesianChart with a StepLineSeries where one axis is a DateTime, integrated with a RadTimeBar, as was outlined here: http://www.telerik.com/forums/synchronizing-chartview-and-timebar, except having the data for the StepLineSeries & RadTimeBar bound to a view model.
Is there any way I could get a sample with a RadCartesianChart and RadTimeBar using MVVM?
Thanks!
Hi,
I'd like to add some custom properties to styles.
Suppose I wanted to add a property called blink to my document's styles, how would I go about it?
I'm hoping to find a better approach than (shudder) serializing something into the Tag property.
Thanks
Hi
I have added Secondary Y-Axis for Chart but the scroll bar on the both Y-Axis is not shown anymore.
Is there any fix for this issue?
Thanks