Hi to all,
I'm not understand why if although I setted CurrentCultureInfo "it", I see completely translated my grid (ok), but a column that should show a currency with italian format, it shows currency in english format yet.
My codes in app.cs and column of gridview
private
void
Application_Startup(
object
sender, StartupEventArgs e)
{
Thread.CurrentThread.CurrentCulture =
new
CultureInfo(
"it"
);
Thread.CurrentThread.CurrentUICulture =
new
CultureInfo(
"it"
);
<
telerik:GridViewDataColumn
Header
=
"Cambio"
DataMemberBinding
=
"{Binding Cambio, StringFormat=\{0:F4\}}"
/>
Hi,
I have a RadGridView, what I need is to style the cell so that when data type is some series, it can be represented with Bar/line/Area or Pie chart.
For example, if the data type is basic types, int/string/bool etc, it just shows as is. And if the data type is series, then by default, uses Pie chart. On top of that, user can change the representation from Pie to Bar/line/Area with a drop down selection.
I hope my question is clear and this is the correct place you could help me with it.
Many thanks.
Mingxue
Hello,
We want to display our data which has more than 1000 items in tree view with pagination. and also user should be able to filter the items.items per page should be configurable.how we can implement this.
I am trying to follow the instructions from: http://docs.telerik.com/devtools/wpf/styling-and-appearance/styling-apperance-implicit-styles-overview.html#applying-theme-globally-in-your-application From the picture below you can see that it definitely is in my list of References. I apologize if this is a stupid question as I am fairly new to WPF (WinForms was my thing).
http://i.stack.imgur.com/fBtbQ.png
I included a Theme's Folder and put the XAML files into that. I am able to reference them with out error but it does not seem to want to apply the theme to my button type:
<ResourceDictionary Source="/Themes/System.Windows.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.xaml"/>
As you can see in the picture I have tried using the dll files as references but it doesn't they they are referenced.
<ResourceDictionary Source="/Telerik.Windows.Themes.Green;component/Themes/System.Windows.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Green;component/Themes/Telerik.Windows.Controls.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Green;component/Themes/Telerik.Windows.Controls.Navigation.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Green;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>
Anyone able to tell me why it is not able to use the Theme Green dll Reference?
When I click the column header to sort the gridview the itemsource's index is not change
is any way to change the index
Hi,
I have a PolarChart with multiple series. The problem is that the scale of the two series is entirely different and when I plot them I am unable to see the one with smaller values.
Is there a way in RadPolarChart similar to RadCartesianChart where I can specify a different axis to plot the second series and also a different location for the secondary axis.
Thank You
<
Window
x:Class
=
"Test_GridView_header_Office2013.MainWindow"
Title
=
"MainWindow"
Height
=
"350"
Width
=
"525"
>
<
tk:RadGridView
Margin
=
"10"
>
<
tk:RadGridView.Columns
>
<
tk:GridViewDataColumn
Header
=
"Direct text"
/>
<
tk:GridViewDataColumn
>
<
tk:GridViewDataColumn.Header
>
<
StackPanel
>
<
TextBlock
Text
=
"Header with a stack panel"
/>
</
StackPanel
>
</
tk:GridViewDataColumn.Header
>
</
tk:GridViewDataColumn
>
</
tk:RadGridView.Columns
>
</
tk:RadGridView
>
</
Window
>