18 lines
823 B
XML
18 lines
823 B
XML
<Window x:Class="BarChartSample.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d3="clr-namespace:InteractiveDataDisplay.WPF;assembly=InteractiveDataDisplay.WPF"
|
|
mc:Ignorable="d"
|
|
Title="Bar chart" Height="600" Width="800">
|
|
<Grid>
|
|
<d3:Chart Name="plotter">
|
|
<d3:Chart.Title>
|
|
<TextBlock HorizontalAlignment="Center" FontSize="18" Margin="0,5,0,5">Bar chart sample</TextBlock>
|
|
</d3:Chart.Title>
|
|
<d3:BarGraph Name="barChart" Color="Blue"/>
|
|
</d3:Chart>
|
|
</Grid>
|
|
</Window>
|