提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|使用教程|编辑:黄竹雯|2018-12-27 17:33:05.000|阅读 471 次
概述:Web图表控件ChartDirector连载教程分享之离散数据表面图,内附下载和链接。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
ChartDirector是一个非常理想的图表工具,它拥有广泛的图表类型、分层架构、实时互动的大数据表、普遍适应于各种应用程序以及支持PDF和SVG图标等的优点。此系列连载旨在介绍ChartDirector的实用教程,供大家学习讨论。
此示例演示了使用曲面图的离散数据以及如何隐藏绘图区域墙壁并改变其厚度和颜色。
在先前的曲面图示例中,数据是网格化的,这意味着数据点的(x,y)坐标位于矩形网格上。ChartDirector还支持分散的数据点,这意味着数据点可以位于任意位置。ChartDirector会自动检测使用SurfaceChart.setData传递到曲面图的数据是网格还是分散。
在此示例中,使用ThreeDChart.setWallVisibility隐藏3个绘图区域墙中的2个。对于可见墙,使用ThreeDChart.setWallColor将其颜色设置为黑色时,其厚度设置为0。其主要和次要的格子线是使用ThreeDChart.setWallGrid设置为白色和灰色。
以下代码可在“cppdemo / scattersurface ”中找到。MFC版本的代码可在“mfcdemo”中找到(仅限Windows版本)。QT版本的代码可在“qtdemo”中找到。
#include "chartdir.h" int main(int argc, char *argv[]) { // The (x, y, z) coordinates of the scattered data double dataX[] = {0.5, 1.9, 4.9, 1.0, 8.9, 9.8, 5.9, 2.9, 6.8, 9.0, 0.0, 8.9, 1.9, 4.8, 2.4, 3.4, 7.9, 7.5, 4.8, 7.5, 9.5, 0.4, 8.9, 0.9, 5.4, 9.4, 2.9, 8.9, 0.9, 8.9, 10.0, 1.0, 6.8, 3.8, 9.0, 5.3, 6.4, 4.9, 4.5, 2.0, 5.4, 0.0, 10.0, 3.9, 5.4, 5.9, 5.8, 0.3, 4.4, 8.3}; double dataY[] = {3.3, 3.0, 0.7, 1.0, 9.3, 4.5, 8.4, 0.1, 0.8, 0.1, 9.3, 1.8, 4.3, 1.3, 2.3, 5.4, 6.9, 9.0, 9.8, 7.5, 1.8, 1.4, 4.5, 7.8, 3.8, 4.0, 2.9, 2.4, 3.9, 2.9, 2.3, 9.3, 2.0, 3.4, 4.8, 2.3, 3.4, 2.3, 1.5, 7.8, 4.5, 0.9, 6.3, 2.4, 6.9, 2.8, 1.3, 2.9, 6.4, 6.3}; double dataZ[] = {6.6, 12.5, 7.4, 6.2, 9.6, 13.6, 19.9, 2.2, 6.9, 3.4, 8.7, 8.4, 7.8, 8.0, 9.4, 11.9, 9.6, 15.7, 12.0, 13.3, 9.6, 6.4, 9.0, 6.9, 4.6, 9.7, 10.6, 9.2, 7.0, 6.9, 9.7, 8.6, 8.0, 13.6, 13.2, 5.9, 9.0, 3.2, 8.3, 9.7, 8.2, 6.1, 8.7, 5.6, 14.9, 9.8, 9.3, 5.1, 10.8, 9.8 }; // Create a SurfaceChart object of size 680 x 550 pixels. Set background to brushed silver and // border to grey (888888). Set the top-left and bottom-right corners to rounded corners with 20 // pixels radius. SurfaceChart *c = new SurfaceChart(680, 550, Chart::brushedSilverColor(), 0x888888); c->setRoundedFrame(0xffffff, 20, 0, 20, 0); // Add a title to the chart using 20 points Times New Roman Italic font. Set top/bottom margin // to 8 pixels. TextBox *title = c->addTitle("Surface Created Using Scattered Data Points", "timesi.ttf", 20); title->setMargin(0, 0, 8, 8); // Add a 2 pixel wide black (000000) separator line under the title c->addLine(10, title->getHeight(), c->getWidth() - 10, title->getHeight(), 0x000000, 2); // Set the center of the plot region at (290, 235), and set width x depth x height to 360 x 360 // x 180 pixels c->setPlotRegion(290, 235, 360, 360, 180); // Set the elevation and rotation angles to 45 and -45 degrees c->setViewAngle(45, -45); // Set the perspective level to 30 c->setPerspective(30); // Set the data to use to plot the chart c->setData(DoubleArray(dataX, (int)(sizeof(dataX) / sizeof(dataX[0]))), DoubleArray(dataY, (int)(sizeof(dataY) / sizeof(dataY[0]))), DoubleArray(dataZ, (int)(sizeof(dataZ) / sizeof( dataZ[0])))); // Add a color axis (the legend) in which the top right corner is anchored at (660, 80). Set the // length to 200 pixels and the labels on the right side. ColorAxis *cAxis = c->setColorAxis(660, 80, Chart::TopRight, 200, Chart::Right); // Set the color axis title with 12 points Arial Bold font cAxis->setTitle("Z Title Placeholder", "arialbd.ttf", 12); // Add a bounding box with light grey (eeeeee) background and grey (888888) border. Set the // top-left and bottom-right corners to rounded corners of 10 pixels radius. cAxis->setBoundingBox(0xeeeeee, 0x888888); cAxis->setRoundedCorners(10, 0, 10, 0); // Set surface grid lines to semi-transparent black (cc000000) c->setSurfaceAxisGrid(0xcc000000); // Set contour lines to semi-transparent white (80ffffff) c->setContourColor(0x80ffffff); // Set the walls to black in color c->setWallColor(0x000000); // Set the xyz major wall grid lines to white (ffffff), and minor wall grid lines to grey // (888888) c->setWallGrid(0xffffff, 0xffffff, 0xffffff, 0x888888, 0x888888, 0x888888); // Set the wall thickness to 0 c->setWallThickness(0, 0, 0); // Show only the xy wall, and hide the yz and zx walls. c->setWallVisibility(true, false, false); // Set the x, y and z axis titles using 12 points Arial Bold font c->xAxis()->setTitle("X Title\nPlaceholder", "arialbd.ttf", 12); c->yAxis()->setTitle("Y Title\nPlaceholder", "arialbd.ttf", 12); // Output the chart c->makeChart("scattersurface.jpg"); //free up resources delete c; return 0; }
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至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幢