zoukankan      html  css  js  c++  java
  • Silverlight之工具箱使用2

    Silverlight工具箱给我们提供了一个数据统计表控件。我们只需要将数据与这套工具结合起来,就可以绘制出柱形,线性,饼状图形等。

    我们在绘制图表之前,需要引用类库程序集。如果我们将控件拖到视图当中,IDE就会自动引入程序集文件并创建命名空间。

    每一个图表必须在Chart对象的Chart.Series属性标记内进行定义,每个Series可以包含若干个同种类型的图表,这样我们就可以在一个图表中实现多种数据的比较了。

    下面是绘制柱状图形的代码:

    <toolkit:Chart x:Name="chartColumn" Margin="5" Title="柱状图" Width="400" Height="250">

            <toolkit:Chart.Series>

                <toolkit:ColumnSeries Title="人口"

                                      DependentValueBinding="{Binding Value}"

                                      IndependentValueBinding="{Binding Key}"/>

                <toolkit:ColumnSeries  Title="GDP"

                                       DependentValueBinding="{Binding Value}"

                                      IndependentValueBinding="{Binding Key}"/>

     

            </toolkit:Chart.Series>

        </toolkit:Chart>

    然后我们来绑定数据。

    ((ColumnSeries)chartColumn.Series[0]).ItemsSource = new KeyValuePair<string, int>[]

                {

                    new KeyValuePair<string,int>("北京",1230),

                     new KeyValuePair<string,int>("上海",1110),

                      new KeyValuePair<string,int>("广州",950),

                       new KeyValuePair<string,int>("郑州",800),

                        new KeyValuePair<string,int>("新乡",600)

                };

     

                ((ColumnSeries)chartColumn.Series[1]).ItemsSource = new KeyValuePair<string, int>[]

                {

                    new KeyValuePair<string,int>("北京",1300),

                     new KeyValuePair<string,int>("上海",1200),

                      new KeyValuePair<string,int>("广州",1000),

                       new KeyValuePair<string,int>("郑州",840),

                        new KeyValuePair<string,int>("新乡",610)

                };

    第一个用于绑定人口数据,第二个用于绑定GDP数据。我们创建键值对KeyValuePair数组作为图表的数据源。Value表示城市名,Key表示人口或GDP,这两个属性分别是对DependentValueBinding和IndependentValueBinding进行绑定。

    效果如图:

     

    如果我们使用线形或者点行,那么我们X轴上必须是数值型,一旦我们设定为String类型,就会发生程序异常。

    下面我们来绘制饼状图,代码如下:

    <toolkit:Chart x:Name="chartPie" Margin="5" Title="饼状图" Width="400" Height="250">

            <toolkit:Chart.Series>

                <toolkit:PieSeries Title="人口"

                                      DependentValueBinding="{Binding Value}"

                                      IndependentValueBinding="{Binding Key}"/>

            </toolkit:Chart.Series>

        </toolkit:Chart>

    绑定数据代码:

    ((PieSeries)chartPie.Series[0]).ItemsSource = new KeyValuePair<string, int>[]

                {

                    new KeyValuePair<string,int>("北京",1230),

                     new KeyValuePair<string,int>("上海",1110),

                      new KeyValuePair<string,int>("广州",950),

                       new KeyValuePair<string,int>("郑州",800),

                        new KeyValuePair<string,int>("新乡",600)

                };

    效果如图:

     

  • 相关阅读:
    JAVA安卓和C# 3DES加密解密的兼容性问题(2013年8月修改版)
    eval绑定decimal数据后,如何去掉后面没有意义的0?
    Linq使用Group By经验总结
    mysql 分页存储过程 一次返回两个记录集(行的条数,以及行记录),DataReader的Read方法和NextResult方法
    把 HttpHandler.ashx 修改为 异步编程 异步操作
    td内容自动换行 ,td超过宽度显示点点点… , td 使用 overflow:hidden 无效,英文 数字 不换行 撑破div容器
    window.location.href = window.location.href 跳转无反应 a 超链接 onclick 点击跳转无反应
    C#怎么调用百度地图Web API
    .Net MVC 当前上下文中不存在名称“Style”
    无法使用备份文件 'D:20160512.bak',因为原先格式化该文件时所用扇区大小为 512,而目前所在设备的扇区大小为 4096
  • 原文地址:https://www.cnblogs.com/wzk89/p/1962640.html
Copyright © 2011-2022 走看看