Click here to Skip to main content
15,898,222 members
Home / Discussions / WPF
   

WPF

 
QuestionAccess Parent of Templated TreeViewItem Control ? Pin
AmitDey17-Jan-11 5:56
AmitDey17-Jan-11 5:56 
AnswerRe: Access Parent of Templated TreeViewItem Control ? Pin
SledgeHammer0118-Jan-11 7:30
SledgeHammer0118-Jan-11 7:30 
GeneralRe: Access Parent of Templated TreeViewItem Control ? Pin
AmitDey18-Jan-11 7:40
AmitDey18-Jan-11 7:40 
Questionsql server express [modified] Pin
arkiboys17-Jan-11 2:30
arkiboys17-Jan-11 2:30 
AnswerRe: sql server express Pin
Pete O'Hanlon17-Jan-11 3:12
mvePete O'Hanlon17-Jan-11 3:12 
AnswerRe: sql server express Pin
Abhinav S17-Jan-11 5:34
Abhinav S17-Jan-11 5:34 
QuestionGridview not showing items [modified] [Solved] Pin
V.17-Jan-11 1:22
professionalV.17-Jan-11 1:22 
QuestionColumnbar styling quesiton in SL4 [modified] Pin
CrafterIt16-Jan-11 22:46
CrafterIt16-Jan-11 22:46 
Hi i need some help, my styling is not working a i would like it to.

on the x axis that i try to style i have 4 text´s that says "good", "poor" etc...

The problem is that after i apply the style and change the angel of the text change to about 10 different values 0 and 1
(there are still 4 columnbars displayed)

I want the text good to be at an angle of -64

and adjust the with of the bars to make them smaller

EDIT: The independentvalue bindings displays at the top of the graph, the bottom displays values from 0, 0,1 0,2 0,3 ... 1

can anyone help?

   <chartingToolkit:Chart HorizontalAlignment="Stretch"
                       VerticalAlignment="Stretch"
                       BorderBrush="White"
                       x:Name="Chart"
                       FlowDirection="LeftToRight"
                       Margin="6,1,1,1"
                       Grid.Column="0"
                       Grid.Row="0"
                       Title="Score"
                       FontFamily="Arial"
                       FontSize="10.667"
                       BorderThickness="0,1,1,1">
    <chartingToolkit:Chart.LegendStyle>
        <Style TargetType="Control">
            <Setter Property="Width"
                    Value="0" />
            <Setter Property="Height"
                    Value="0" />
        </Style>
    </chartingToolkit:Chart.LegendStyle>

    <chartingToolkit:Chart.Axes>
        <chartingToolkit:LinearAxis Orientation="X">
            <chartingToolkit:LinearAxis.AxisLabelStyle>
                <Style TargetType="chartingToolkit:AxisLabel">
                    <Setter Property="RenderTransformOrigin"
                            Value="0.8,0.8" />
                    <Setter Property="RenderTransform">
                        <Setter.Value>
                            <RotateTransform Angle="-65" />
                        </Setter.Value>
                    </Setter>
                </Style>
            </chartingToolkit:LinearAxis.AxisLabelStyle>
        </chartingToolkit:LinearAxis>
    </chartingToolkit:Chart.Axes>

    <chartingToolkit:ColumnSeries x:Name="ScoringColumn"

                                  IndependentValueBinding="{Binding Scoring}"
                                  DependentValueBinding="{Binding Number}"
                                  Title="Series 1" />

</chartingToolkit:Chart>


modified on Monday, January 17, 2011 6:07 AM

AnswerRe: Columnbar styling quesiton in SL4 Pin
CrafterIt17-Jan-11 2:23
CrafterIt17-Jan-11 2:23 
Questioncant play sound from source using MediaElement Pin
igalep13215-Jan-11 12:09
igalep13215-Jan-11 12:09 
AnswerRe: cant play sound from source using MediaElement Pin
omeriko916-Jan-11 6:59
omeriko916-Jan-11 6:59 
GeneralRe: cant play sound from source using MediaElement Pin
igalep13216-Jan-11 11:45
igalep13216-Jan-11 11:45 
GeneralRe: cant play sound from source using MediaElement Pin
omeriko916-Jan-11 20:21
omeriko916-Jan-11 20:21 
GeneralRe: cant play sound from source using MediaElement Pin
igalep13216-Jan-11 20:41
igalep13216-Jan-11 20:41 
GeneralRe: cant play sound from source using MediaElement Pin
omeriko916-Jan-11 20:43
omeriko916-Jan-11 20:43 
Questionwpf 2010 express Pin
arkiboys14-Jan-11 20:18
arkiboys14-Jan-11 20:18 
AnswerRe: wpf 2010 express Pin
Praveen Raghuvanshi15-Jan-11 4:30
professionalPraveen Raghuvanshi15-Jan-11 4:30 
AnswerRe: wpf 2010 express Pin
Abhinav S16-Jan-11 2:18
Abhinav S16-Jan-11 2:18 
QuestionThe property 'ContentStringFormat' does not exist on the type Pin
CrafterIt13-Jan-11 22:45
CrafterIt13-Jan-11 22:45 
AnswerRe: The property 'ContentStringFormat' does not exist on the type Pin
Pete O'Hanlon13-Jan-11 23:12
mvePete O'Hanlon13-Jan-11 23:12 
GeneralRe: The property 'ContentStringFormat' does not exist on the type Pin
CrafterIt13-Jan-11 23:18
CrafterIt13-Jan-11 23:18 
GeneralRe: The property 'ContentStringFormat' does not exist on the type Pin
Pete O'Hanlon13-Jan-11 23:26
mvePete O'Hanlon13-Jan-11 23:26 
GeneralRe: The property 'ContentStringFormat' does not exist on the type Pin
CrafterIt14-Jan-11 0:04
CrafterIt14-Jan-11 0:04 
QuestionMVVM Patter and databinding [modified] Pin
ToddHileHoffer13-Jan-11 15:18
ToddHileHoffer13-Jan-11 15:18 
AnswerRe: MVVM Patter and databinding Pin
Abhinav S13-Jan-11 17:50
Abhinav S13-Jan-11 17:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.