PageRenderTime 26ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/Main/src/Samples/v0.2/Markers/Window1.xaml

#
XAML | 15 lines | 15 code | 0 blank | 0 comment | 0 complexity | c275cabb5e5d503ed938e319706370b1 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. <Window x:Class="SimpleMarkers.Window1"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d3="http://research.microsoft.com/DynamicDataDisplay/1.0"
  5. Title="Various markers sample" Height="300" Width="300" Loaded="Window_Loaded">
  6. <Grid>
  7. <d3:ChartPlotter Name="plotter">
  8. <d3:Header>
  9. <TextBlock HorizontalAlignment="Center" FontSize="20">Very simple line plot</TextBlock>
  10. </d3:Header>
  11. <d3:VerticalAxisTitle>This is vertical axis</d3:VerticalAxisTitle>
  12. <d3:HorizontalAxisTitle>This is horizontal axis</d3:HorizontalAxisTitle>
  13. </d3:ChartPlotter>
  14. </Grid>
  15. </Window>