Telerik Forums
UI for WPF Forum
6 answers
296 views
Hello, I've tried to generate the style for the control as said onhttp://www.telerik.com/help/wpf/raddatafilter-styles-and-templates-styling-the-raddatafilter.html

But, I can't seem to do the "Create a Copy" for creating the style/template structure for the control.

Where can I find it to be able to put on my ResourceDictionary and edit the Style default?

Thanks
Rossen Hristov
Telerik team
 answered on 21 Jul 2011
2 answers
101 views
RadControl for WPF 4.0 2011.2.0712
Blend 4.0
For all AdditionalTemplates only CreateEmpty action.
Also Demo project Themes_WPF not compiling

by error The 'clr-namespace' URI refers to a namespace 'Telerik.Windows.Controls.External' that is not included in the assembly.   

All projects in Themes_WPF solution targeted to 3.5 framework and have not valid reference to System.Xaml not presented in 3.5 framework.

Tatarincev
Top achievements
Rank 1
 answered on 21 Jul 2011
0 answers
85 views
Hi Support
I have problem with binding a value of FilterDescriptor in RadGridView. I'm just able of binding it to StaticResource how can we bind it to non static ones.

Thanks in advance
Mehri
Mehri
Top achievements
Rank 1
 asked on 21 Jul 2011
3 answers
257 views
I have a gridview, with a column that is a date. It displays the date in the format of the current culture.
However, at runtime the culture can change.
How can I let the gridview adapt to this new culture, so that the dates are formatted in the new culture format?
Milan
Telerik team
 answered on 21 Jul 2011
1 answer
125 views
Hi,
How can I change the content of DateTime MaskedInput programmaticaly?
I set the new DateTime to Value property of MaskedInput but nothing changed.
the setter of Text property is inaccessible also and cannot be changed.
I've used MaskedInput in a UserControl and wanna change it from the main App Window in code.
What's the solution?  
Libertad
Top achievements
Rank 1
 answered on 21 Jul 2011
0 answers
78 views
Hi

I' facing an issue that on load gridview cloumns first Shrink and then expand. which looks odd in the application. Kindly suggest me how to overcome with this issue.

Regads
Nikhil Jain
Top achievements
Rank 1
 asked on 21 Jul 2011
6 answers
270 views
Hi,

I am trying to implement a binding for some properties of SeriesDefinition for RadChart in XAML. Here is a part of my XAML:

<telerik:RadChart.SeriesMappings>
    <telerik:SeriesMapping LegendLabel="Rates" CollectionIndex="1">
        <telerik:SeriesMapping.SeriesDefinition>
            <telerik:LineSeriesDefinition AxisName="Rate" ItemLabelFormat="0.00 \%">
                <telerik:LineSeriesDefinition.Visibility>
                    <Binding Path="ChartRateSeriesVisible" Source="{StaticResource ViewModel}" Converter="{StaticResource BooleanToSeriesVisibilityConverter}" />
                </telerik:LineSeriesDefinition.Visibility>
            </telerik:LineSeriesDefinition>
        </telerik:SeriesMapping.SeriesDefinition>
    </telerik:SeriesMapping>
</telerik:RadChart.SeriesMappings>

This binding works fine, it gets the value from my ViewModel, so series are either visible on invisible.

The issue is the following:
I have a CheckBox on my View (UserControl defined in XAML) which is also binded to the same property of ViewModel (ChartRateSeriesVisible  property). And I want to control the visibility of a series by clicking on the checkbox. CheckBox's binding is defined property. I can see in the trace that checking/unchecking the checkbox updates the value of ChartRateSeriesVisible property.

But chart is not updated automatically. Only then I reload the chart completely (by updating its ItemsSource for instance), my LineSeries is hidden or visible depending on the value of ChartRateSeriesVisible.

What am I doing wrong or what am I missing?
In the telerik's sample application 'Simple Filtering' almost the same approach is used! Series Visiblity property is also binded to the ViewModel's property, etc.

I am using WPF 3.5 and the version of telerik assemblies is 2010.2.924.35.

Thanks in advance.
Giuseppe
Telerik team
 answered on 21 Jul 2011
3 answers
178 views
Hi,

I am using MVVM Architecture, When I tried to bind ClientID (int value) to X Axis, everything seems working fine, but when I tried to bind Client Name (String Value) to X Axis. I am getting Error saying "Input string is not in correct format".

How Can I bind Custom String Value to X Axis using XAML (no Code Behind)?


 

<telerik:RadChart x:Name="RadChart1" ItemsSource="{Binding Data}" Grid.Row="0" Grid.Column="0" Width="700" >

<telerik:RadChart.SeriesMappings>
<
telerik:SeriesMappingCollection>
<
telerik:SeriesMapping LegendLabel="CandleStick Series" >

 <telerik:SeriesMapping.SeriesDefinition >

<telerik:CandleStickSeriesDefinition /> 
</
telerik:SeriesMapping.SeriesDefinition>

<telerik:ItemMapping FieldName="High" DataPointMember="High" />

<telerik:ItemMapping FieldName="Low" DataPointMember="Low" />

<telerik:ItemMapping FieldName="Open" DataPointMember="Open" />

<telerik:ItemMapping FieldName="Close" DataPointMember="Close" />

<telerik:ItemMapping FieldName="CName" DataPointMember="XValue" />
</telerik:SeriesMapping>

</telerik:SeriesMappingCollection>

 </telerik:RadChart.SeriesMappings>

<telerik:RadChart.DefaultView>

<telerik:ChartDefaultView>

<telerik:ChartDefaultView.ChartArea>

<telerik:ChartArea>

<telerik:ChartArea.AxisX>

<telerik:AxisX LabelRotationAngle="90" Title="Client Name"> </telerik:AxisX>

</telerik:ChartArea.AxisX>

<telerik:ChartArea.AxisY> <telerik:AxisY ExtendDirection="Down" AutoRange="False" MinorTickPointMultiplier="5" Step="{Binding Interval}" MinValue="{Binding MinValue}" MaxValue="{Binding MaxValue}" Title="Blood Volume (mL)">

 </telerik:AxisY>

 </telerik:ChartArea.AxisY>

 <telerik:ChartArea.Legend>

 <telerik:ChartLegend Visibility="Collapsed" /> </telerik:ChartArea.Legend>

</telerik:ChartArea> </telerik:ChartDefaultView.ChartArea> </telerik:ChartDefaultView> </telerik:RadChart.DefaultView> 

</telerik:RadChart>

 

Evgenia
Telerik team
 answered on 21 Jul 2011
1 answer
70 views
Dear Team

After adding a new row in DataGrid, if we click on any other row than both rows are shown as selected. We want that row that is clicked lately only it should be shown as selected and SelectedItems must only containt one element.

Regards
Shahnawaz Babar
Maya
Telerik team
 answered on 21 Jul 2011
3 answers
126 views
Hi

I want to get last selected column when I select new column.

Regards
Vijay
Milan
Telerik team
 answered on 21 Jul 2011
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
WatermarkTextBox
DesktopAlert
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
LayoutControl
ProgressBar
Sparkline
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
SplashScreen
Callout
Rating
Accessibility
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?