Hi,
I have a custom library which has provision to handle '+', '-' and many other operators along with custom functions. My requirement is that, I want spreadsheet to call my library to evaluate the cell formula. The operands of the operators ('+' etc. ) are custom and cannot be calculated by default engine.

Freeze Pane is not working as expected when we try to change freeze position programmatically.
When i try to change freeze position on a Button click the change in the UI for freeze is not happening.
Is anything i am doing wrong.?
Thanks

Hi
I have a RadCartesianChart (see XAML below) in a DataGridTemplateColumn but cannot find a way to reduce the amount of vertical space it is taking up. It seems to have a minimum height? Please advise.
<DataGridTemplateColumn Header="MyColumn"
IsReadOnly="True"
Width="300">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<telerik:RadCartesianChart Name="MyChart"
VerticalAlignment="Stretch"
Margin="10"
MaxHeight="20">
<telerik:RadCartesianChart.Behaviors>
<telerik:ChartTooltipBehavior />
</telerik:RadCartesianChart.Behaviors>
<telerik:LineSeries ItemsSource="{Binding HistoricValues}"
ValueBinding="RawValue"
CategoryBinding="Year">
<telerik:LineSeries.PointTemplate>
<DataTemplate>
<Ellipse Fill="Blue"
Width="8"
Height="8"/>
</DataTemplate>
</telerik:LineSeries.PointTemplate>
</telerik:LineSeries>
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:CategoricalAxis />
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.VerticalAxis>
<telerik:LinearAxis Minimum="{Binding HistoricValueMinimum}"
Maximum="{Binding HistoricValueMaximum}"
MajorStep="{Binding HistoricValueStep}"
Visibility="Collapsed"/>
</telerik:RadCartesianChart.VerticalAxis>
</telerik:RadCartesianChart>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
Thanks

Hello everyone.
I have noticed a strange RadGridView's behavior when I'm copying value from decimal cell (with DataFormat string) or exporting grid content to Excel.
If I use IQueryable as GridView ItemsSource, there is copied value the same as on-screen value. For example, I have a value 1000000 in data source and {0:N2} as DataFormatString, and a result value displayed in cell will be "1 000 000,00". When I copy this cell via Ctrl+C or export the datagrid to Excel, the result will be also "1 000 000,00", string with spaces between digits, not number. Math functions in Excel cannot be applied for that value.
However, If use IEnumberable instead IQueryable, the exported and pasted values will be absolutely the same as it in DataSource and will have their native type (decimal).
How can I copy the cell value in it native type using IQueryable as data source?
The check-spelling-as-you-type logic of RichTextBox treats multiple words separated by a non-space character (e.g., a comma or slash) as a single word. For example, me/myself gets underlined as shown on the attached picture (or here). Also note how a punctuation mark (e.g., a period) is included and underlined as a part of the word, e.g. for miiispelled. on the same picture.
I've investigated this a bit and it comes down to the fact that both "me/myself" and "miiispelled." are treated with a single SpanLayoutBox, which I believe is an atomic unit for underlining. Please correct me if I'm wrong.
Is this a bug or a "feature"? Is there any workarounds to make RichTextBox to interpret (and spell-check) such sequences of text as separate SpanLayoutBox objects?
Thank you.

My diagram has a mode in which nodes can be selected, but cannot be deleted. The deletion request is denied with a user message explaining what happened. Because I'm using a MVVM setup, I'm overriding RemoveItem in my GraphSource like so:
public override bool RemoveItem(DisplayNode node){ if (m_MainVM.NoDeleteAllowed) return false; return base.RemoveItem(node); }That works as expected, BUT: any connections to/from the node that is not actually getting deleted have already been updated with null references when I reach this part of the code. The Source or Target property of those RadDiagramConnections has been set to null where the node was referenced before. Obviously that's not what I want since the node is not actually getting deleted.
Where do I handle this behavior and prevent it? The RadDiagram events don't seem to catch this case. I could reconstruct the RadDiagramConnection's Source or Targets, I guess. But that seems like a hack.
I've been using Telerik GridView for a while now, but in the above version I've started to have some problems with AggregateFunctions.
I have a Grid with a Sum function, but when I change it's data source, the sum value is not updated with the new values. The strange part is that, if I invalidated the column with the sum (scrolling it out of the screen, for example), then the value is updated.
Am I doing something wrong? Has anyone else experienced this behavior?