111,088
社区成员




<d3:ChartPlotter Name="HeightLineGraph" Grid.Row="3" Grid.Column="0"
HorizontalContentAlignment="Center"
VerticalContentAlignment="Center"
HorizontalAlignment="Center"
VerticalAlignment="Center" LegendVisible="False">
<d3:ChartPlotter.HorizontalAxis>
<d3:HorizontalDateTimeAxis />
</d3:ChartPlotter.HorizontalAxis>
</d3:ChartPlotter>
<l:LegendItem x:Class="Microsoft.Research.DynamicDataDisplay.LineLegendItem"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:l="clr-namespace:Microsoft.Research.DynamicDataDisplay"
>
<l:LegendItem.ContentTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Margin="0,1,0,1"
ToolTip="{Binding Full}">
<Line X1="3" X2="20" Y1="10" Y2="5"
Stroke="{Binding Pen.Brush}"
StrokeThickness="{Binding Pen.Thickness}"/>
<!--StrokeDashArray="{Binding Pen.DashStyle.Dashes}"
StrokeDashOffset="{Binding Pen.DashStyle.Offset}"-->
<TextBlock Text="{Binding Brief}" Margin="5,0,0,0"/>
</StackPanel>
</DataTemplate>
</l:LegendItem.ContentTemplate>
</l:LegendItem>