Telerik Forums
UI for WPF Forum
7 answers
283 views
I need to implement the chart in attach dinamically.
Is it possible to have a vertical axis with decrement from positive value to negative value?
Is it possible to have an horizzontal axis where the current step is double of his previous?
Thanks a lot

Simone Giorgio
Spindox Italy


 
Evgenia
Telerik team
 answered on 19 Nov 2015
2 answers
148 views

After loading my layout that was saved with unpinned panes, I notice that these panes are not loaded as 'unpinned'.  Moreover, these panes no longer seem dockable.

When I look at the generated XLM, I see that IsDockable="False" and that there's nothing to indicate that the pane is unpinned (ie. IsPinned="False").  Is this a bug?  How can I take care of this?

 

Pierre
Top achievements
Rank 1
 answered on 19 Nov 2015
4 answers
116 views

GridView Paging bug when using custom row control template element loaded.

When the first element is loaded and its set to IsEnabled = false then the first element on the next page is also set to IsEnabled to false.

bet when i go to the page number 3 and go back then is everything ok. 

XAML:

 <CheckBox Name="assembledCheckBox"
  Margin="0,0,0,0"
  FontWeight="Bold"
  FontSize="10"
  Grid.Row="1"
  Grid.Column="1"
  VerticalAlignment="Center"
  HorizontalAlignment="Left" Content="Assembled"
  IsChecked="{Binding a_status}" Loaded="assembledCheckBox_Loaded"
 >​

 

 private void assembledCheckBox_Loaded(object sender, RoutedEventArgs e)
        {

            CheckBox temp = new CheckBox();
            temp = (CheckBox)sender;
            if (temp.IsChecked == true)
            {
                temp.IsEnabled = false;
            }
        }​

 

Yoan
Telerik team
 answered on 19 Nov 2015
1 answer
158 views

Hi all,

When the user clicks somewhere on the chart area I need to be able to add a data point there. 

I didn't find anything like that on the documentation but I was wondering if there is at least a work around for this, this is really important for my application.

 

Thanks!

Petar Marchev
Telerik team
 answered on 19 Nov 2015
1 answer
231 views

I have an application which makes large use of the RadGridView. Mostly things work fine however uses have reported that sometimes after using the grid the filters will stop working. I have also seen this myself however it seems to not be consistent.

 I have tried several things myself however once in this frozen state the filters do not respond however all the rest of UI works normally. I have tried things like

Grid.FilterDescriptors.Clear(); ​and Grid.Rebind(); Nothing seems to work

 

In the cases where it is stuck I will clear the filters using the code above and immediately after this the filter descriptors are not clear. This also happens in the UI portion of the filter.

 

Any suggestions?

Maya
Telerik team
 answered on 19 Nov 2015
7 answers
191 views
Hello all,
I need to make an image as a point mark on my chart and it has to be a different one for each point mark. How can I do this?
Bárbara
Top achievements
Rank 1
 answered on 18 Nov 2015
6 answers
3.1K+ views
Hi,
We have a problem with gesturing.
We found out that gesturing with the stylus doesn't work properly.
Let us take radcombobox as example. 
Please use the stylus (real stylus which you use on for example Microsoft surface, not this rubbery one)  and the finger only for a test. When you use stylus on radcombobox the list of items drops down but if you selecting item it highlights it but that is it. The highlighted value is not going to the selected text area and the list of items is not collapsing. When you use the finger touch or cursor and mouse it all works. It is just stylus. We have to have stylus to work. The same issue is with other components like for example raddatetimepicker. 
Please help us with this problem.

Thanks,
Grazyna Weimann
Georgi
Telerik team
 answered on 18 Nov 2015
5 answers
252 views

Dear Team,

I want to persist radtreeview state. How can i achieve this behavior. Here is my custom XAML code. please help to advise.

 

<telerik:RadTreeView Margin="8"
                                                    x:Name="xTreeView"
                                                    ItemsSource="{Binding Categories,Mode=TwoWay}"
                                                    IsLineEnabled="True"
                                                    telerik:TreeViewSettings.DragDropExecutionMode="Legacy"
                                                    mouse:MouseDoubleClick.Command="{Binding ShowItemCommand}"
                                                    mouse:MouseDoubleClick.CommandParameter="{Binding   ElementName=xTreeView,Path=SelectedItem}"
                                                    ScrollViewer.VerticalScrollBarVisibility="Visible"
                                                    ScrollViewer.HorizontalScrollBarVisibility="Visible"
                                                    IsDragDropEnabled="True"
                                                    AllowDrop="True"
                                                    telerik:PersistenceManager.StorageId="treeViewInfotab">
                                   <telerik:RadTreeView.ItemTemplate>
                                       <HierarchicalDataTemplate>
                                           <StackPanel Orientation="Horizontal">
                                               <CheckBox IsChecked="{Binding IsChecked, Mode=TwoWay}"
                                                         telerik:StyleManager.Theme="Office_Black" />
                                               <TextBlock VerticalAlignment="Center"
                                                          Text="{Binding Name}" />
                                               <TextBlock Text="{Binding InfoTabItemsSourcePath}"
                                                          Visibility="Hidden" />
                                           </StackPanel>
                                       </HierarchicalDataTemplate>
                                   </telerik:RadTreeView.ItemTemplate>
                               </telerik:RadTreeView>
 

Thank you.

Regards,

Prabakaran

Martin Ivanov
Telerik team
 answered on 18 Nov 2015
1 answer
123 views

1. While in the Week view, click on a slot under Day X.
2. Then click on the header of another day, say Day Y (where Y is different than X).
This will bring you back to the Day view for Day Y
3. Now double-click immediately on any slot to create an appointment. The start time will show the date/time of the slot selected at step 1, not that of the slot you double-clicked on.

 

Kalin
Telerik team
 answered on 18 Nov 2015
2 answers
235 views

Hello,

I have a gridview below. The code "await Task.Run(() => { View.clear(); });" throw an exception:"The calling thread cannot access this object because a different thread owns it." But if I remove "<telerik:GridViewSelectColumn/>", it​ works, please tell me how to fix it? Thanks.

<telerik:RadGridView Name="view" ShowGroupPanel="False" Margin="10" IsReadOnly="True" ItemsSource="{Binding View}" AutoGenerateColumns="False" SelectionMode="Extended">
                <telerik:RadGridView.RowStyle>
                    <Style TargetType="telerik:GridViewRow">
                        <Setter Property="IsSelected" Value="{Binding IsSelected, Mode=OneWayToSource}"/>
                    </Style>
                </telerik:RadGridView.RowStyle>
                <telerik:RadGridView.Columns>
                    <telerik:GridViewSelectColumn/>
                    <telerik:GridViewDataColumn Header="Name" DataMemberBinding="{Binding Name}"/>
                </telerik:RadGridView.Columns>
            </telerik:RadGridView>

Chen
Top achievements
Rank 1
 answered on 18 Nov 2015
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
DataPager
PersistenceFramework
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
NavigationView (Hamburger Menu)
Wizard
ExpressionEditor
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
Callout
PasswordBox
SplashScreen
Localization
Rating
Accessibility
CollectionNavigator
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?