动态数据显示图表

时间:2015-02-07 10:55:30

标签: c# charts highcharts bar-chart dynamic-data-display

我正在开发Microsoft Visual Studio 2010,包括参考动态数据显示。 我想创建条形图,如条形图(Int horizental axis X int Vertical axis)和Bar Graph2(DateTime horizental axis X int Vertical axis)和饼图。 我发现困难的是创建吧。我需要从日期基础“访问”中取出日期。 我读到的所有例子都是c#代码中的日期。 我真的希望你理解我这是我第一次问这里一个问题所以很好:)。谢谢你,祝你有个美好的一天。 工作示例的链接将在祝福中接受。

<Window x:Class="GraphService.ManagersCharts.BarChartManager"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        mc:Ignorable="d"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:d3="http://research.microsoft.com/DynamicDataDisplay/1.0"
        Title="Window1"
        WindowState="Normal"
        Height="500"
        Width="800"
        Background="Wheat">

        <Grid >
        <d3:ChartPlotter Name="plotter"
                         Margin="10,10,20,10">
            <d3:ChartPlotter.HorizontalAxis>
                <d3:HorizontalIntegerAxis Name="HorizentalAxis" />
            </d3:ChartPlotter.HorizontalAxis>
            <d3:ChartPlotter.VerticalAxis>
                <d3:VerticalIntegerAxis Name="VerticalAxis" />
            </d3:ChartPlotter.VerticalAxis>

            <d3:Header FontFamily="Arial"
                       Content="Bar Chart" />
            <d3:VerticalAxisTitle FontFamily="Arial"
                                  Content="" />
            <d3:HorizontalAxisTitle FontFamily="Arial"
                                    Content="" />
        </d3:ChartPlotter>
    </Grid>

</Window>

0 个答案:

没有答案