Telerik Forums
UI for WPF Forum
1 answer
315 views
I'm using CategoricalAxis to create a nice histogram plot. How can I hide the ticks on the horizontal axis?
I read about a MajorTicksVisibility property, but IntelliSense never shows it so I suspect it's not there...

<chart:RadCartesianChart x:Name="RadCartesianChart" Palette="Arctic" Margin="10">
        <chart:RadCartesianChart.DataContext>
            <viewModels:HistogramViewModel />
        </chart:RadCartesianChart.DataContext>
        <chartView:BarSeries ItemsSource="{Binding Data}" ValueBinding="Value"
                            ShowLabels="False" FontFamily="Segoe UI" FontSize="10">
        </chartView:BarSeries>
        <chart:RadCartesianChart.HorizontalAxis>
            <chartView:CategoricalAxis  GapLength="0" ShowLabels="False" FontFamily="Segoe UI" FontSize="12" />
        </chart:RadCartesianChart.HorizontalAxis>

        <chart:RadCartesianChart.VerticalAxis>
            <chartView:LinearAxis FontFamily="Segoe UI" FontSize="12"
                            Title="Histogram"
                            Minimum="0" Maximum="{Binding AxisMaxValue}"
                            ShowLabels="True" />
        </chart:RadCartesianChart.VerticalAxis>
        <chart:RadCartesianChart.Grid>
            <chartView:CartesianChartGrid MajorLinesVisibility="Y" />
        </chart:RadCartesianChart.Grid>
    </chart:RadCartesianChart>
Petar Marchev
Telerik team
 answered on 14 Dec 2012
2 answers
131 views
With a recent update to Q3 2012, all of our RadListBox started to show the content with FontWeight="Bold", which was not the case with previous versions. As a result, many of our screens became plain ugly.

Was it a deliberate decision to make this theme change or is it a bug?

Even more, if the data template of a RadListBoxItem has a TextBlock with FontWeight set explicitly, it is ignored and the Bold style is used. 

Code example:
<telerik:RadListBox ItemsSource="{Binding TestItems}">
    <telerik:RadListBox.ItemTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding }"
                       FontWeight="Normal"
                       FontSize="18" />
        </DataTemplate>
    </telerik:RadListBox.ItemTemplate>
</telerik:RadListBox>

For this template, items are still shown with Bold.

I've checked and this behavior is specific for Windows8 & Metro themes, Windows7 still displaying items correctly.

Any workarounds to get our screens back to normal and looking good?

Thanks
Masha
Telerik team
 answered on 14 Dec 2012
0 answers
82 views
Sorry, I miss typed the title.
David
Top achievements
Rank 1
 asked on 14 Dec 2012
6 answers
279 views
We have an ExternalDLL directory where we store all external dll's that are used by our software product.
All Telerik dll's we use are in that directory too. The ExternalDLL is versioned in TFS. This worked great up to the 2012 Q3 release. 
If I do a get Latest version Visual Studio hangs on the Telerik.Windows.Documents.dll, if I wait a very long time Visual Studio reports the file is in use.

If I start Visual Studio without loading a project an just go to Team Explorer and get the Telerik.Windows.Documents.dll Visual Studio hangs again. I disabled my virus scanner but get the same result. Removing and adding the directory from my Workspace also hangs. Getting and loading the solution file also hangs VS 2010.

I'm using Visual Studio 2010, SP1 with the Silverlight 5 update on Windows 7 64 bit professional. Telerik is version 2012.3.1203.40.
I tried reproducing the problem on a 32 bit virtual machine, there I can get the Telerik.Windows.Documents.dll without a problem. Unfortunately the DirectShow video streams we are showing do not work in the Virutal Machine.

At this moment I can not do a Get Latest Version in Visual Studio so I'm stuck.

After some more testing we found that Telerik.Windows.Documents.dll version 2011.3.1220.40 can be get from TFS on a 64 bit Windows 7, but version 2012.3.1017.40 and 2012.3.1203.40 cannot be get on 64 bit from TFS, if I try that VS 2010 hangs. If you wait long enoug after an hour or so VS 2010 reports that the file dll is in use.

Does anybody have a clue how to solve this?
Pieter
Top achievements
Rank 2
 answered on 13 Dec 2012
1 answer
323 views

If I use your RadTabControl, I get error 26 in the Output window. Why?

System.Windows.Data Error: 26 : ItemTemplate and ItemTemplateSelector are ignored for items already of the ItemsControl's container type; Type='RadTabItem'



<telerik:RadTabControl x:Name="tabControl" Grid.Row="1" VerticalAlignment="Top"
                               DisplayMemberPath="Content" DropDownDisplayMode="Visible" ScrollMode="Viewport">
   <telerik:RadTabItem />
</telerik:RadTabControl>

I copied the Windows 7 theme from \RadControls for WPF Q3 2012\Themes.Implicit\WPF40\Windows7\Themes:

<Window.Resources>
   <ResourceDictionary>
      <ResourceDictionary.MergedDictionaries>
         <ResourceDictionary Source="../Themes/Telerik.Windows.Controls.Navigation.xaml"/>
Pavel R. Pavlov
Telerik team
 answered on 13 Dec 2012
1 answer
153 views
The animation for opening and closing a panel that is using autohide is very jerky, and it seems the panel underneath flickers. This is visible even on the demo. Is there a fix for this?
Vladi
Telerik team
 answered on 13 Dec 2012
1 answer
126 views
Hi,

I'm create a empty wpf project and for example add RadComboBox in form not problem if add Empty ClassLibrary .NET 2.0 my add control (RadComboBox) Exception error in design mode or right click control getting Edit Additional Templates Exception error in design mode.
I'm try in RadControl WPF 2012 Q3 SP1, VS 2012, Win 8 X64.

Sorry for bad English.

Thanks so much.
Alex
Top achievements
Rank 1
 answered on 13 Dec 2012
2 answers
126 views
Is it possible to just sort on one column at a time? I have alot of columns and don't want the user
clicking on a million columns to sort. It just gets to complicated. So I just need the column sorting on one
column at a time. Is this possible?

Thanks!
Daniel
Daniel
Top achievements
Rank 1
 answered on 12 Dec 2012
6 answers
917 views
I want to display the textual value of a foreign key, while binding to the id value in the orginal table in the grid and in edit have a combo box to edit.

e.g  in a normal combo i would do something like:
<ComboBox Name="TypecomboBox" ItemsSource="{Binding Source={StaticResource personTypesData }}" DisplayMemberPath="Name" SelectedValuePath="PersonTypeID" SelectedValue="{Binding Path=PersonTypeID}" />

What's the equivalent to this in the grid control?

I can set the grid to edit as a combo using the comboeditor.  How do i display the textual value rather than the ID?
Carina
Top achievements
Rank 1
 answered on 12 Dec 2012
1 answer
106 views
In my tile view, I have managed to maximize horizontally as shown below. The problem is that when I maximize an item, the minimized items are arranged horizontally below it.

I want this layout when an item is maximized:
_______
|             |
|______ |
|___|___|
|___|___|
|___|___|

And when all items are minimized:
_______
|___|___|
|___|___|
|___|___|

    <telerik:RadTileView Margin="0"
                      ColumnsCount="1"
                      ColumnWidth="400"
                      MinimizedItemsPosition="Bottom"
                      ContentTemplate="{StaticResource contentTemplate}"
                      IsAutoScrollingEnabled="True"
                      IsDockingEnabled="True"
                      IsVirtualizing="True"
                      ItemsSource="{Binding Images}"
                      ItemTemplate="{StaticResource headerTemplate}"
                      MinimizedColumnWidth="200"
                      MinimizedRowHeight="200"
                      PreservePositionWhenMaximized="True"
                      RowHeight="200"
                      TileStateChangeTrigger="SingleClick" />
Zarko
Telerik team
 answered on 12 Dec 2012
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?