DevExpress Silverlight DXChart特效总结

2024-02-29 14:38

本文主要是介绍DevExpress Silverlight DXChart特效总结,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1、  主题修改

引用  xmlns:core=http://schemas.devexpress.com/winfx/2008/xaml/core

在Grid中添加core:ThemeManager.ApplicationTheme ="DXStyle"

主页引用一次即可

 

2、  坐标倒影

 

<dxc:ChartControl Name="chartControl1" >

<dxc:ChartControl.Diagram>

<dxc:XYDiagram2D>

<!--倒影-->

<dxc:XYDiagram2D.DefaultPane>

<dxc:Pane MirrorHeight="100" />

</dxc:XYDiagram2D.DefaultPane>

<dxc:XYDiagram2D.Series>

</dxc:XYDiagram2D.Series>

</dxc:XYDiagram2D>

</dxc:ChartControl.Diagram>

<dxc:ChartControl.Legend>

<dxc:Legend />

</dxc:ChartControl.Legend>

</dxc:ChartControl>

 

 

 

3、  动态加载效果

 

 

 

<dxc:ChartControl Name="chartControl1" <!--特效--> EnableAnimation="True" >

EnableAnimation:激活动画,True 或者 False。True是激活;False是不激活。

 

 

4、  透明度

 

<dxc:BubbleSeries2D DisplayName="Second Series" Transparency="0.1">

Transparency:透明度,范围0~1。0:不透明;1是完全透明。并非所有类型都支持透明

 

 

5、  饼图空心特效

 

<dxc:PieSeries2D <!—空心大小,0为实心--> HoleRadiusPercent="20">

 

 

6、  饼图点击某区域实现分离动态特效滚动特效

在后台代码添加

         const int clickDelta = 200;

        DateTime mouseDownTime;

        bool rotate;

        Point startPosition;

         bool IsClick(DateTime mouseUpTime)

        {

            return (mouseUpTime - mouseDownTime).TotalMilliseconds < clickDelta;

        }

 

        double CalcAngle(Point p1, Point p2)

        {

            Point center = new Point(chartControl1.Diagram.ActualWidth / 2, chartControl1.ActualHeight / 2);

            Point relativeP1 = new Point(p1.X - center.X, p1.Y - center.Y);

            Point relativeP2 = new Point(p2.X - center.X, p2.Y - center.Y);

            double angleP1Radian = Math.Atan2(relativeP1.X, relativeP1.Y);

            double angleP2Radian = Math.Atan2(relativeP2.X, relativeP2.Y);

            double angle = (angleP2Radian - angleP1Radian) * 180 / (Math.PI * 2);

            if (angle > 90)

                angle = 180 - angle;

            else if (angle < -90)

                angle = 180 + angle;

            return angle;

        }

 

        void chart_MouseUp(object sender, MouseButtonEventArgs e)

        {

            ChartHitInfo hitInfo = chartControl1.CalcHitInfo(e.GetPosition(chartControl1));

            rotate = false;

            if (hitInfo == null || hitInfo.SeriesPoint == null || !IsClick(DateTime.Now))

                return;

            double distance = PieSeries.GetExplodedDistance(hitInfo.SeriesPoint);

            Storyboard storyBoard = new Storyboard();

            DoubleAnimation animation = new DoubleAnimation();

            animation.Duration = new Duration(new TimeSpan(0, 0, 0, 0, 300));

            animation.To = distance > 0 ? 0 : 0.3;

            storyBoard.Children.Add(animation);

            Storyboard.SetTarget(animation, hitInfo.SeriesPoint);

            Storyboard.SetTargetProperty(animation, new PropertyPath(PieSeries.ExplodedDistanceProperty));

            storyBoard.Begin();

        }

 

        void chart_MouseDown(object sender, MouseButtonEventArgs e)

        {

            mouseDownTime = DateTime.Now;

            Point position = e.GetPosition(chartControl1);

            ChartHitInfo hitInfo = chartControl1.CalcHitInfo(position);

            if (hitInfo != null && hitInfo.SeriesPoint != null)

            {

                rotate = true;

                startPosition = position;

            }

        }

 

        void chart_MouseMove(object sender, MouseEventArgs e)

        {

            Point position = e.GetPosition(chartControl1);

            ChartHitInfo hitInfo = chartControl1.CalcHitInfo(position);

            if (hitInfo == null)

                return;

            if (rotate && !IsClick(DateTime.Now))

            {

                PieSeries2D series = chartControl1.Diagram.Series[0] as PieSeries2D;

                double angleDelta = CalcAngle(startPosition, position);

                startPosition = position;

            }

        }

 

        void ChartsDemoModule_ModuleAppear(object sender, RoutedEventArgs e)

        {

            chartControl1.Animate();

        }

 

        void rblSweepDirection_SelectedIndexChanged(object sender, RoutedEventArgs e)

        {

            if (chartControl1 != null)

                chartControl1.Animate();

        }

 

        void chart_QueryChartCursor(object sender, QueryChartCursorEventArgs e)

        {

            ChartHitInfo hitInfo = chartControl1.CalcHitInfo(e.Position);

            if (hitInfo != null && hitInfo.SeriesPoint != null)

                e.Cursor = Cursors.Hand;

        }

在前台添加

 

  <dxc:ChartControl Name="chartControl1" MouseLeftButtonUp="chart_MouseUp" MouseLeftButtonDown="chart_MouseDown" <!—边框厚度,0是没有-->BorderThickness="0" MouseMove="chart_MouseMove" QueryChartCursor="chart_QueryChartCursor">

 

 

 

 

7、  颜色区分(并非所有有效)

 

 

 

<dxc:PointSeries2D <!—是否区分颜色。True是区分;False是不区分-->ColorEach="True" <!—点的大小-->MarkerSize="20">

 

8、  参数标签

 

 

 

 

<dxc:ChartControl.CrosshairOptions>

<dxc:CrosshairOptions

<!—X轴坐标值标签-->ShowArgumentLabels="True"

<!—X轴横坐标值基准线-->ShowArgumentLine="True"

<!—Y轴纵坐标值标签-->ShowValueLabels="True"

<!—Y轴横坐标值基准线-->ShowValueLine="True" />

</dxc:ChartControl.CrosshairOptions>

 

 

9、  是否显示点标签

 

 

 <dxc:AreaStackedSeries2D DisplayName="First Series" <!—点标签。True为显示;False为不显示-->LabelsVisibility="True">

 

10、 点标签样式

 

 

<dxc:SimpleDiagram2D.Series>

<dxc:PieSeries2D HoleRadiusPercent="20" LabelsVisibility="True">

<dxc:PieSeries2D.PointOptions >

<dxc:PointOptions

<!—标签显示内容。ArgumentAndValues表示名称和值-->

PointView="ArgumentAndValues">

<dxc:PointOptions.ValueNumericOptions>

<dxc:NumericOptions

<!—标签值格式。General为一般;Scientific为科学计数法;Percent为百分比;Currency为¥;-->

Format="Percent"

<!—精确小数点尾数。0为整数-->

Precision="2" />

</dxc:PointOptions.ValueNumericOptions>

</dxc:PointOptions>

</dxc:PieSeries2D.PointOptions>

</dxc:SimpleDiagram2D.Series>

</dxc:PieSeries2D>

 

 

 

11、 图例格式

 

 

 

<dxc:SimpleDiagram2D.Series>

<dxc:PieSeries2D HoleRadiusPercent="20" LabelsVisibility="True">

<dxc:PieSeries2D.LegendPointOptions>

<dxc:PointOptions PointView="ArgumentAndValues">

<dxc:PointOptions.ValueNumericOptions>

<dxc:NumericOptions Format="Percent" Precision="2"/>

</dxc:PointOptions.ValueNumericOptions>

</dxc:PointOptions>

</dxc:PieSeries2D.LegendPointOptions>

</dxc:SimpleDiagram2D.Series>

</dxc:PieSeries2D >

 

 

 

12、 调色板

 

<dxc:ChartControl.Palette>

<!—不同模板,应用时只能有一个有效-->

<dxc:NatureColorsPalette/>

<dxc:PastelKitPalette/>

<dxc:InAFogPalette/>

<dxc:TerracottaPiePalette/>

<dxc:NorthernLightsPalette/>

<dxc:ChameleonPalette/>

<dxc:TheTreesPalette/>

<dxc:OfficePalette/>

<dxc:DXChartsPalette/>

 

<dxc:CustomPalette/>

</dxc:ChartControl.Palette>


这篇关于DevExpress Silverlight DXChart特效总结的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/759146

相关文章

Android数据库Room的实际使用过程总结

《Android数据库Room的实际使用过程总结》这篇文章主要给大家介绍了关于Android数据库Room的实际使用过程,详细介绍了如何创建实体类、数据访问对象(DAO)和数据库抽象类,需要的朋友可以... 目录前言一、Room的基本使用1.项目配置2.创建实体类(Entity)3.创建数据访问对象(DAO

Java向kettle8.0传递参数的方式总结

《Java向kettle8.0传递参数的方式总结》介绍了如何在Kettle中传递参数到转换和作业中,包括设置全局properties、使用TransMeta和JobMeta的parameterValu... 目录1.传递参数到转换中2.传递参数到作业中总结1.传递参数到转换中1.1. 通过设置Trans的

C# Task Cancellation使用总结

《C#TaskCancellation使用总结》本文主要介绍了在使用CancellationTokenSource取消任务时的行为,以及如何使用Task的ContinueWith方法来处理任务的延... 目录C# Task Cancellation总结1、调用cancellationTokenSource.

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

学习hash总结

2014/1/29/   最近刚开始学hash,名字很陌生,但是hash的思想却很熟悉,以前早就做过此类的题,但是不知道这就是hash思想而已,说白了hash就是一个映射,往往灵活利用数组的下标来实现算法,hash的作用:1、判重;2、统计次数;

git使用的说明总结

Git使用说明 下载安装(下载地址) macOS: Git - Downloading macOS Windows: Git - Downloading Windows Linux/Unix: Git (git-scm.com) 创建新仓库 本地创建新仓库:创建新文件夹,进入文件夹目录,执行指令 git init ,用以创建新的git 克隆仓库 执行指令用以创建一个本地仓库的

二分最大匹配总结

HDU 2444  黑白染色 ,二分图判定 const int maxn = 208 ;vector<int> g[maxn] ;int n ;bool vis[maxn] ;int match[maxn] ;;int color[maxn] ;int setcolor(int u , int c){color[u] = c ;for(vector<int>::iter

整数Hash散列总结

方法:    step1  :线性探测  step2 散列   当 h(k)位置已经存储有元素的时候,依次探查(h(k)+i) mod S, i=1,2,3…,直到找到空的存储单元为止。其中,S为 数组长度。 HDU 1496   a*x1^2+b*x2^2+c*x3^2+d*x4^2=0 。 x在 [-100,100] 解的个数  const int MaxN = 3000

状态dp总结

zoj 3631  N 个数中选若干数和(只能选一次)<=M 的最大值 const int Max_N = 38 ;int a[1<<16] , b[1<<16] , x[Max_N] , e[Max_N] ;void GetNum(int g[] , int n , int s[] , int &m){ int i , j , t ;m = 0 ;for(i = 0 ;

go基础知识归纳总结

无缓冲的 channel 和有缓冲的 channel 的区别? 在 Go 语言中,channel 是用来在 goroutines 之间传递数据的主要机制。它们有两种类型:无缓冲的 channel 和有缓冲的 channel。 无缓冲的 channel 行为:无缓冲的 channel 是一种同步的通信方式,发送和接收必须同时发生。如果一个 goroutine 试图通过无缓冲 channel