0

Is it possible to show bars horizontally?

  <Grid x:Name="LayoutRoot" Background="White">
        <StackPanel>
            <toolkit:Chart Height="400" Width="600" Title="Mered data" >              
                    <toolkit:ColumnSeries ItemsSource="{Binding AverageImpressionLengths}" IndependentValueBinding="{Binding SeqName}"
                                          DependentValueBinding="{Binding Time}"  
                                          HorizontalAlignment="Left" Height="304" VerticalAlignment="Top" Width="266"/>

            </toolkit:Chart>
        </StackPanel>
    </Grid>
LittleBobbyTables - Au Revoir
  • 32,008
  • 25
  • 109
  • 114
NoWar
  • 36,338
  • 80
  • 323
  • 498

1 Answers1

1

Yes, it is possible, you should just replace ColumnSeries by BarSeries:

<toolkit:Chart Height="400" Width="600" Title="Mered data" >              
    <toolkit:BarSeries ItemsSource="{Binding AverageImpressionLengths}" 
            IndependentValueBinding="{Binding SeqName}"
            DependentValueBinding="{Binding Time}"  />
</toolkit:Chart>
vortexwolf
  • 13,967
  • 2
  • 54
  • 72