提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|使用教程|编辑:吴园园|2019-07-08 15:08:10.523|阅读 538 次
概述:本教程将讲解如何使用AnyChart绘制基于JavaScript的互动式Sankey图表。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
【点击查看上一篇:如何使用JavaScript创建酷互动Sankey图 (一)】
如何在视觉上增强JS Sankey图表
由于我们已经知道如何使用AnyChart JS库来绘制简单的Sankey图,所以我们来谈谈如何增强它们表示数据可视化任务的能力。
例如,您可以通过自定义外观,添加下降和创建多级图表来改进图表。
a 自定义外观
可以定制AnyChart Sankey图表以改善其外观。例如,节点和流的视觉外观可以被配置为根据其正常和悬停状态显示不同的颜色。
为此,该normal()方法和hovered()方法可以与fill()方法(用于设置填充)和stroke()方法(用于设置笔划)一起使用。
以下是配置图表视觉外观的代码:
><html><head>><script src="//cdn.anychart.com/releases/v8/js/anychart-core.min.js"></script><script src="//cdn.anychart.com/releases/v8/js/anychart-sankey.min.js"></script></head><body><div id="container"></div><script> anychart.onDocumentReady(function(){ //creating the data var data = [ {from: "Google", to: "Facebook", weight: 20000}, {from: "Google", to: "Twitter", weight: 17000}, {from: "Google", to: "YouTube", weight: 8000}, {from: "Google", to: "Wikipedia", weight: 11000}, {from: "Bing", to: "Facebook", weight: 7500}, {from: "Bing", to: "Twitter", weight: 5000}, {from: "Bing", to: "Wikipedia", weight: 4000} ];//calling the Sankey functionvar sankey_chart = anychart.sankey(data);//customizing the width of the nodes sankey_chart.nodeWidth("20%");//setting the chart title sankey_chart.title("Sankey Diagram Customization Example");//customizing the vertical padding of the nodes sankey_chart.nodePadding(20);//customizing the visual appearance of nodes sankey_chart.node().normal().fill("#64b5f5 0.6"); sankey_chart.node().hovered().fill(anychart.color.darken("#64b5f7")); sankey_chart.node().normal().stroke("#455a63", 2);//customizing the visual appearance of flows sankey_chart.flow().normal().fill("#ffa000 0.5"); sankey_chart.flow().hovered().fill(anychart.color.darken("#ffa000")); sankey_chart.flow().hovered().stroke("#455a63");//setting the container id sankey_chart.container("container");//initiating drawing the Sankey diagram sankey_chart.draw(); });</script></body></html>
以下是配置的图表在浏览器上的显示方式:
b添加下降
只要缺少流的目的地,就会形成下降。由于未提供目标节点,因此下降通常会显示丢失。因此,要设置下降,请null在to字段中包含值为的数据行。您还需要在from字段中设置数据流源的名称,并在字段中设置dropoff的值weight。
您还可以自定义下降以适合您的偏好,例如配置其可视外观。
以下是添加落差的代码,该落差显示了太阳光能量传输到建筑物内部的过程:
<html><head><script src="//cdn.anychart.com/releases/v8/js/anychart-core.min.js"></script><script src="//cdn.anychart.com/releases/v8/js/anychart-sankey.min.js"></script></head><body><div id="container"></div><script> anychart.onDocumentReady(function(){ //creating the datavar data = [ {from: "Solar Light", to: "Shade", weight: 110}, {from: "Shade", to: null, weight: 60}, {from: "Shade", to: "Facade", weight: 40}, {from: "Facade", to: null, weight: 30}, {from: "Facade", to: "Interior Lighting", weight: 20} ];//calling the Sankey functionvar sankey_chart = anychart.sankey(data);//customizing the width of the nodes sankey_chart.nodeWidth("50%");//setting the chart title sankey_chart.title("Sankey Diagram Dropoff Example");//customizing the vertical padding of the nodes sankey_chart.nodePadding(20);//customizing the visual appearance of dropoff sankey_chart.dropoff().normal().fill( {keys: ["#dd2c01 0.5", "#455a62 0.9"], angle: 275} ); sankey_chart.dropoff().hovered().stroke("#455a61");//setting the container id sankey_chart.container("container");//initiating drawing the Sankey diagram sankey_chart.draw(); });</script></body></html>
以下是浏览器上的dropoff:
C创建多级Sankey图表
此外,您可以使用AnyChart JS库来创建具有多级链接的Sankey Diagrams。
在下面的示例中,我创建了一个Sankey图表,显示了每年从一个国家/地区迁移到另一个国家/地区的任意数量的人员。节点排列成三列,并根据需要自动添加附加级别。
这是代码:
<html><head><script src="//cdn.anychart.com/releases/v8/js/anychart-core.min.js"></script><script src="//cdn.anychart.com/releases/v8/js/anychart-sankey.min.js"></script></head><body><div id="container"></div> <script> anychart.onDocumentReady(function(){ //creating the datavar data = [ {from: "France", to: "Canada", weight: 3000}, {from: "France", to: "Germany", weight: 2000}, {from: "France", to: "South Africa", weight: 1100}, {from: "France", to: "Portugal", weight: 900}, {from: "US", to: "China", weight: 2200}, {from: "US", to: "Canada", weight: 400}, {from: "US", to: "Germany", weight: 700}, {from: "US", to: "Portugal", weight: 200}, {from: "Canada", to: "China", weight: 1500}, {from: "Canada", to: "Japan", weight: 3300}, {from: "Canada", to: "England", weight: 550}, {from: "Germany", to: "China", weight: 1100}, {from: "Germany", to: "Japan", weight: 750}, {from: "Germany", to: "England", weight: 400}, {from: "South Africa", to: "China", weight: 3100}, {from: "Portugal", to: "China", weight: 2100}, {from: "Portugal", to: "Japan", weight: 1600} ];//calling the Sankey functionvar sankey_chart = anychart.sankey(data);//customizing the width of the nodes sankey_chart.nodeWidth("50%");//setting the chart title sankey_chart.title("Sankey Multilevel Chart Example");//customizing the vertical padding of the nodes sankey_chart.nodePadding(20);//setting the container id sankey_chart.container("container");//initiating drawing the Sankey diagram sankey_chart.draw(); });</script></body></html>
以下是多级Sankey图表在浏览器上的外观:
Wrapping up
正如您从JS图表教程中看到的那样,使用良好的数据可视化库创建直观和交互式的Sankey图表并不是一门火箭科学。借助适合开发人员的解决方案,您可以创建精彩的图表,并将您的数据可视化工作提升到新的水平。
当然,我们只是简单介绍了使用Sankey图表可以做些什么。您可以访问AnyChart文档,了解如何充分利用Sankey图表以及其他几种类型的图表。
您还可以尝试其他JavaScript图表库并评估其帮助您添加Web应用程序所需的可视化的功能。
【点击查看上一篇:如何使用JavaScript创建酷互动Sankey图 (一)】
想要购买AnyChart正版授权的朋友可以。
有关产品动态更多的精彩内容,敬请关注下方的微信公众号▼▼▼
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
文章转载自:本文探讨 SQL Server 中 NULL 和空值之间的区别,并讨论如何有效地处理它们。
Unity 是一款功能极其丰富的游戏引擎,允许开发人员将各种媒体集成到他们的项目中。但是,它缺少最令人兴奋的功能之一 - 将 Web 内容(例如 HTML、CSS 和 JavaScript)直接渲染到 3D 场景中的纹理上的能力。在本文中,我们将介绍如何使用 DotNetBrowser 在 Unity3D 中将 Web 内容渲染为纹理。
DevExpress v24.2帮助文档正式发布上线了,请按版本按需下载~
本教程将向您展示如何用MyEclipse构建一个Web项目,欢迎下载最新版IDE体验!
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢