PageRenderTime 62ms CodeModel.GetById 33ms RepoModel.GetById 0ms app.codeStats 0ms

/Main/src/Xbap/DynamicDataDisplay.Xbap.Samples/Demos/v02/TooltipSample.xaml

#
XAML | 18 lines | 16 code | 2 blank | 0 comment | 0 complexity | c0f295ce742bf7388cfa98d94673d95e MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. <Page x:Class="Microsoft.Research.DynamicDataDisplay.Samples.Demos.v02.TooltipSample"
  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="TooltipSample">
  6. <Grid>
  7. <Grid.RowDefinitions>
  8. <RowDefinition Height="Auto" />
  9. <RowDefinition Height="*"/>
  10. </Grid.RowDefinitions>
  11. <Button Content="Show/Hide markers" Click="Button_Click" Grid.Row="0"
  12. Width="110" Height="30" HorizontalAlignment="Left"/>
  13. <d3:ChartPlotter Name="plotter" Grid.Row="1">
  14. </d3:ChartPlotter>
  15. </Grid>
  16. </Page>