Syncfusion在WinPhone8.1实现统计图
using Syncfusion.UI.Xaml.Charts;
public static SfChart InitCompareChart(string fundName, double tenThousandRate, double sevenRate)
{
List<FundDay> fdl = new List<FundDay>();
fdl.Add(new FundDay(fundName, tenThousandRate, sevenRate));
fdl.Add(new FundDay("定期三年", 1.0274, 3.75));
fdl.Add(new FundDay("定期二年", 0.5753, 2.10));
fdl.Add(new FundDay("定期一年", 0.4109, 1.50));
fdl.Add(new FundDay("定期半年", 0.3562, 1.30));
fdl.Add(new FundDay("定期三月", 0.3014, 1.10));
fdl.Add(new FundDay("活期", 0.0959, 0.35)); SfChart chart = new SfChart();
chart.HorizontalAlignment = HorizontalAlignment.Stretch;
chart.VerticalAlignment = VerticalAlignment.Stretch;
chart.Header = string.Format("{0}与央行基准存款利率比较", fundName);
chart.FontSize = ; //https://www.syncfusion.com/products/wpf/sfchart/chart-types
BarSeries series1 = new BarSeries();//ColumnSeries 垂直;BarSeries 水平
series1.Label = "七日年化收益(%)";
series1.ItemsSource = fdl;
series1.XBindingPath = "Date"; // XBindingPath to provide the path for category data in the source object.
series1.YBindingPath = "SevenRate"; // YBindingPath to provide the path for numeric data in the source object.
series1.AdornmentsInfo = new ChartAdornmentInfo();
series1.AdornmentsInfo.ShowLabel = true; BarSeries series2 = new BarSeries();
series2.Label = "当日万份收益(元)";
series2.ItemsSource = fdl;
series2.XBindingPath = "Date";
series2.YBindingPath = "TenThousandRate";
series2.AdornmentsInfo = new ChartAdornmentInfo();
series2.AdornmentsInfo.ShowLabel = true; //Adding Series to the Chart Series Collection
chart.Series.Add(series1);
chart.Series.Add(series2); //http://help.syncfusion.com/winrt/sfchart/axis
chart.PrimaryAxis = new CategoryAxis();
chart.PrimaryAxis.Foreground = new Windows.UI.Xaml.Media.SolidColorBrush(Windows.UI.Colors.Green);
chart.SecondaryAxis = new NumericalAxis();
chart.SecondaryAxis.Foreground = new Windows.UI.Xaml.Media.SolidColorBrush(Windows.UI.Colors.Green); //Adding Legends for the chart
chart.Legend = new ChartLegend() { Visibility = Visibility.Visible };
return chart;
}
this.chartGrid.Children.Clear();
SfChart chart = Functions.WinrtChartHelper.InitCompareChart(CurrentFund);
this.chartGrid.Children.Add(chart);
//https://www.syncfusion.com/downloads/communitylicense/confirmation
//http://help.syncfusion.com/winrt/sfchart/getting-started
Syncfusion在WinPhone8.1实现统计图的更多相关文章
- 【Java EE 学习 74 下】【数据采集系统第六天】【使用Jfreechart的统计图实现】【将JFreechart整合到项目中】
之前说了JFreechart的基本使用方法,包括生成饼图.柱状统计图和折线统计图的方法.现在需要将其整合到数据采集系统中根据调查结果生成三种不同的统计图. 一.统计模型的分析和设计 实现统计图显示的流 ...
- 【Java EE 学习 74 上】【数据采集系统第六天】【使用Jfreechart的统计图实现】【Jfreechart的基本使用方法】
之前已经实现了数据的采集,现在已经有了基本的数据,下一步就需要使用这些数据实现统计图的绘制了.这里使用Jfreechart实现这些统计图的绘制.首先看一下Jfreechart的基本用法,只有知道了它的 ...
- 使用C#和Excel进行报表开发(三)-生成统计图(Chart)
有的Web项目选用Excel作为报表方案,在服务器端生成Excel文件,然后传送到客户端,由客户端进行打印.在国内的环境下,相对PDF方式,Excel的安装率应该比pdf阅读器的安装率要高,同时,微软 ...
- Html5绘制饼图统计图
这里要介绍的是一个jQuery插件:jquery.easysector.js Html5提供了强大的绘图API,让我们能够使用javascript轻松绘制各种图形.本文将主要讲解使用HTML5绘制饼图 ...
- Syncfusion 复选框 ComboBoxAdv
XAML: <syncfusion:GridTemplateColumn.EditTemplate> <DataTemplate DataType="viewModel:C ...
- C# 绘制统计图(柱状图, 折线图, 扇形图)【转载】
统计图形种类繁多, 有柱状图, 折线图, 扇形图等等, 而统计图形的绘制方法也有很多, 有Flash制作的统计图形, 有水晶报表生成统计图形, 有专门制图软件制作, 也有编程语言自己制作的:这里我们用 ...
- Syncfusion的社区许可及免费电子书和白皮书
今晚由于要忙于其他事情,就简单的给大家推荐一个第三方组件库.特别注明:这是我义务为这家公司打广告.毕竟我从他们公司收获了很多知识. Syncfusion是一家微软生态下的第三方组件/控件供应商,算是后 ...
- java利用JFreeChart实现各种数据统计图(柱形图,饼图,折线图)
最近在做数据挖掘的课程设计,需要将数据分析的结果很直观的展现给用户,这就要用到数据统计图,要实现这个功能就需要几个第三方包了: 1. jfreechart-1.0.13.jar 2. ...
- Extjs4.2如何实现鼠标点击统计图时弹出窗口来展示统计的具体列表信息
var pageSize = 20;//初始化每页数据条数 var winTitle = '';//初始化窗口标题 /** *点击统计图时,弹出一个窗口,显示统计的详情列表信息, *该方法为项目中所有 ...
随机推荐
- list.subList
import java.util.ArrayList;import java.util.List; public class Test2 { public static void main(St ...
- Codeforces--630H--Benches(组合数)
H - Benches Crawling in process... Crawling failed Time Limit:500MS Memory Limit:65536KB 64b ...
- Java 8 实战 P3 Effective Java 8 programming
目录 Chapter 8. Refactoring, testing, and debugging Chapter 9. Default methods Chapter 10. Using Optio ...
- C# Event.ClickCount 解决垃圾鼠标带来的烦恼
今天调试遇到个Bug,百思不得其解的是在自己的设备上重来不重现,在测试机上百分百重现,如下: 问题:点击一次Button执行两次Click操作 分析:看Log的确是执行了两次,就像真的点击了两次But ...
- 移动App服务端架构设计
我从事手机app服务端开发现在已经是3个年头,自己也整理出了一套相对好用的服务架构,写出来,跟大家一起分享.如有不足,还请多指教. 一:基础流程图. 其实有一点还需要加上,就是对json的压缩和加 ...
- [Apple开发者帐户帮助]二、管理你的团队(3)删除团队成员
如果您已加入Apple开发者计划,您将在App Store Connect中管理团队成员.有关详细信息,请转到App Store Connect帮助中的添加和编辑用户. 如果您已加入Apple Dev ...
- Java并发基础知识点详解
1.synchronized与Lock区别 父类有synchtonized,子类调用父类的同步方法,是没办法同步的,因为synchronized不是修饰符,不会被继承下来. synchronized ...
- git add -A (用该命令添加文件时报错)
前言 最近在学着不使用github客户端,而直接用git命令上传代码至github,当使用命令 git add -A 添加所有项目文件时报错 老实说我是蒙蔽的,因为从来没有遇到过这个错,确认输入 ...
- 【题解】【CodeForces712C】Memory and De-Evolution
[题目描述] 给定一个边长为xx的正三角形,现在每秒钟你可以改变其中一条边的长度(修改量整数),在改变过程中,每秒钟都需要保证改变后的三角形是合法的,且变成均为正整数. 现在需要最终把三角形改变成边长 ...
- 【DP】书的复制
原题链接__戳我噢 [思路] (区间)DP F[I][J]表示前i本书分给j个人用的最短时间 由于每一次j的状态由比j小的状态得出,所以要先枚举j,然后枚举i,接着枚举上一次抄书的人是谁 我觉得,难点 ...