当前位置: 首页 > news >正文

网站视觉优化怎么做天猫网站设计分析

网站视觉优化怎么做,天猫网站设计分析,手机发布WordPress,怎么修改wordpress主题的样式表apexcharts数据可视化之圆环柱状图 有完整配套的Python后端代码。 本教程主要会介绍如下图形绘制方式#xff1a; 基础圆环柱状图多组数据圆环柱状图图片背景自定义角度渐变半个圆环图虚线圆环图 基础圆环图 import ApexChart from react-apexcharts;export function Cir…apexcharts数据可视化之圆环柱状图 有完整配套的Python后端代码。 本教程主要会介绍如下图形绘制方式 基础圆环柱状图多组数据圆环柱状图图片背景自定义角度渐变半个圆环图虚线圆环图 基础圆环图 import ApexChart from react-apexcharts;export function CircleChart() {// 数据序列const series [70]// 图表选项const options {chart: {height: 350,type: radialBar,},plotOptions: {radialBar: {hollow: {size: 70%,}},},labels: [实时进度],}return (div idchartApexChart options{options} series{series} typeradialBar height{550}//div) }多值圆环图 import ApexChart from react-apexcharts;export function MultiCircleChart() {// 数据序列const series [44, 55, 67, 83]// 图表选项const options {chart: {height: 350,type: radialBar,},plotOptions: {radialBar: {dataLabels: {name: {fontSize: 22px,},value: {fontSize: 16px,},total: {show: true,label: 合计,formatter: function (w) {// 默认情况下此函数返回所有序列的平均值。// 下面只是展示自定义格式化器函数使用的一个示例return 249}}}}},labels: [苹果, 橘子, 香蕉, 葡萄],}return (div idchartApexChart options{options} series{series} typeradialBar height{550}//div) }图片背景 import ApexChart from react-apexcharts;export function ImageCircleChart() {// 数据序列const series [67]// 图表选项const options {chart: {height: 350, type: radialBar,},plotOptions: {radialBar: {// 雷达图图标hollow: {margin: 15,size: 70%,image: /clock.png,imageWidth: 64,imageHeight: 64,imageClipped: false},dataLabels: {name: {show: false, color: #fff}, value: {show: true, color: #333, offsetY: 70, fontSize: 22px}}}},// 使用图片填充fill: {type: image, image: {src: [/4274635880_809a4b9d0d_z.jpg],}},stroke: {lineCap: round},labels: [波动率],}return (div idchartApexChart options{options} series{series} typeradialBar height{550}//div) }自定义角度 import ApexChart from react-apexcharts;export function CustomAngleCircleChart() {// 数据序列const series [76, 67, 61, 90]// 图表选项const options {chart: {height: 390,type: radialBar,},plotOptions: {radialBar: {offsetY: 0,startAngle: 0, // 开始角度endAngle: 270, // 结束角度hollow: { // 中间图标margin: 5,size: 30%,background: transparent,image: undefined,},dataLabels: {name: {show: false,},value: {show: false,}},barLabels: {enabled: true,useSeriesColors: true, // 使用和对应图表相同颜色margin: 8,fontSize: 16px,formatter: function (seriesName, opts) {return seriesName : opts.w.globals.series[opts.seriesIndex]},},}},colors: [#1ab7ea, #0084ff, #39539E, #0077B5],labels: [苹果, 橘子, 香蕉, 葡萄],responsive: [{breakpoint: 480,options: {legend: {show: false}}}]}return (div idchartApexChart options{options} series{series} typeradialBar height{550}//div) }渐变 import ApexChart from react-apexcharts;export function GradientCircleChart() {// 数据序列const series [75]// 图表选项const options {chart: {height: 350,type: radialBar,toolbar: {show: true}},plotOptions: {radialBar: {startAngle: -135,endAngle: 225,hollow: {margin: 0,size: 70%,background: #fff,image: undefined,imageOffsetX: 0,imageOffsetY: 0,position: front,dropShadow: {enabled: true,top: 3,left: 0,blur: 4,opacity: 0.24}},track: {background: #fff,strokeWidth: 67%,margin: 0, // margin is in pixelsdropShadow: {enabled: true,top: -3,left: 0,blur: 4,opacity: 0.35}},// 数据标签dataLabels: {show: true,name: {offsetY: -10,show: true,color: #888,fontSize: 17px},value: {formatter: function (val) {return parseInt(val);},color: #111,fontSize: 36px,show: true,}}}},// 渐变色填充fill: {type: gradient,gradient: {shade: dark,type: horizontal,shadeIntensity: 0.5,gradientToColors: [#ABE5A1],inverseColors: true,opacityFrom: 1,opacityTo: 1,stops: [0, 100]}},stroke: {lineCap: round},labels: [百分比],}return (div idchartApexChart options{options} series{series} typeradialBar height{550}//div) }半个圆环图 import ApexChart from react-apexcharts;export function SemiCircleChart() {// 数据序列const series [75]// 图表选项const options {chart: {type: radialBar,offsetY: -20,sparkline: {enabled: true}},plotOptions: {radialBar: {// 通过角度控制只有一半startAngle: -90,endAngle: 90,track: {background: #e7e7e7,strokeWidth: 97%,margin: 5, // margin is in pixelsdropShadow: {enabled: true,top: 2,left: 0,color: #999,opacity: 1,blur: 2}},dataLabels: {name: {show: false},value: {offsetY: -2,fontSize: 22px}}}},grid: {padding: {top: -10}},fill: {type: gradient,gradient: {shade: light,shadeIntensity: 0.4,inverseColors: false,opacityFrom: 1,opacityTo: 1,stops: [0, 50, 53, 91]},},labels: [平均结果],}return (div idchartApexChart options{options} series{series} typeradialBar height{550}//div) }虚线圆环图 import ApexChart from react-apexcharts;export function StrokedGaugeCircleChart() {// 数据序列const series [75]// 图表选项const options {chart: {height: 350,type: radialBar,offsetY: -10},plotOptions: {radialBar: {startAngle: -135,endAngle: 135,dataLabels: {name: {fontSize: 16px,color: undefined,offsetY: 120},value: {offsetY: 76,fontSize: 22px,color: undefined,formatter: function (val) {return val %;}}}}},fill: {type: gradient,gradient: {shade: dark,shadeIntensity: 0.15,inverseColors: false,opacityFrom: 1,opacityTo: 1,stops: [0, 50, 65, 91]},},// 线条stroke: {// 点的数量// 数字越小越密集dashArray: 3},labels: [中位数比],}return (div idchartApexChart options{options} series{series} typeradialBar height{550}//div) }
http://www.dnsts.com.cn/news/130569.html

相关文章:

  • 网站建设中最重要的wordpress 模拟数据
  • 专门做爬虫的网站龙口建设网站
  • 域名与网站海棠网站是什么意思
  • 天津的网站建设公司家教中介网站怎么做学员引流
  • 南宁网站建设公司怎么接单租房网58同城网租房
  • 电子政务网站系统域名申请后怎么建网站
  • 成都网站建设重庆最加科技wordpress 小说站主题
  • 自己做网站难吗平凉建设局官方网站
  • 做商城外贸网站wordpress页面立体效果
  • 国外建设网站首页vs网站开发源码
  • 广州市官网网站建设怎么样宁波网站推广服务
  • 旅游网网站的设计线上推广是什么意思
  • 漳州最便宜的网站建设价格网站被入侵别人是怎么做跳转的
  • 定制网站的价格低网站个人备案做论坛
  • 网站平台怎么建立网站免费网站免费麻豆
  • 在因特网上建设网站可选择的方案有wap企业网站模板
  • php做视频网站源码定制管理系统软件
  • 没事网站建设项目规划书黄冈建设局网站
  • 沈阳 教育 公司 网站建设万能搜索引擎入口
  • 网站怎么做免费seo搜索引擎Wordpress虚拟资源交易
  • 理财网站模板卓商网站建设公司
  • 推荐网站建设品牌静态网站开发篇
  • 网站试运营做网站如何宣传
  • 成都网站建设顶呱呱qq推广功能在哪开
  • 企业网络推广方案的制定搜索引擎优化的概念
  • 中国wix网站制作公司wordpress使用置顶文章没用
  • 天津网站设计开发wordpress2016
  • .net 网站开发书籍东莞建设网站费用
  • 免费域名网站搭建网站建设报价模版
  • 宁波高端定制网站建设重庆vr制作