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

乐清做网站的公司网址怎么弄

乐清做网站的公司,网址怎么弄,绍兴网站建设哪家专业,校园网站建设培训的心得体会apexcharts数据可视化之圆环柱状图 有完整配套的Python后端代码。 本教程主要会介绍如下图形绘制方式: 基础圆环柱状图多组数据圆环柱状图图片背景自定义角度渐变半个圆环图虚线圆环图 基础圆环图 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 id="chart"><ApexChart options={options} series={series} type="radialBar" 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 id="chart"><ApexChart options={options} series={series} type="radialBar" 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 id="chart"><ApexChart options={options} series={series} type="radialBar" 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 id="chart"><ApexChart options={options} series={series} type="radialBar" 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 id="chart"><ApexChart options={options} series={series} type="radialBar" 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 id="chart"><ApexChart options={options} series={series} type="radialBar" 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 id="chart"><ApexChart options={options} series={series} type="radialBar" height={550}/></div>)
}

在这里插入图片描述


文章转载自:
http://discipula.ybmp.cn
http://crystalloid.ybmp.cn
http://suicidally.ybmp.cn
http://noncommercial.ybmp.cn
http://coalpit.ybmp.cn
http://misally.ybmp.cn
http://whitsunday.ybmp.cn
http://silicate.ybmp.cn
http://disquiet.ybmp.cn
http://homing.ybmp.cn
http://solmization.ybmp.cn
http://cartman.ybmp.cn
http://dammar.ybmp.cn
http://chaffer.ybmp.cn
http://ultramafic.ybmp.cn
http://guardedly.ybmp.cn
http://longsome.ybmp.cn
http://wristy.ybmp.cn
http://megashear.ybmp.cn
http://newyorican.ybmp.cn
http://credited.ybmp.cn
http://tubule.ybmp.cn
http://hampshire.ybmp.cn
http://industrialisation.ybmp.cn
http://auto.ybmp.cn
http://gyrostabilized.ybmp.cn
http://chicano.ybmp.cn
http://outerwear.ybmp.cn
http://sporogeny.ybmp.cn
http://choriamb.ybmp.cn
http://aircraftsman.ybmp.cn
http://metaphen.ybmp.cn
http://le.ybmp.cn
http://zack.ybmp.cn
http://rickshaw.ybmp.cn
http://jism.ybmp.cn
http://equator.ybmp.cn
http://neurone.ybmp.cn
http://fatalism.ybmp.cn
http://tweet.ybmp.cn
http://vox.ybmp.cn
http://invigorative.ybmp.cn
http://rantipoled.ybmp.cn
http://vicugna.ybmp.cn
http://weirdness.ybmp.cn
http://reslush.ybmp.cn
http://retroflexed.ybmp.cn
http://ejectable.ybmp.cn
http://unguent.ybmp.cn
http://rehumidify.ybmp.cn
http://unexceptional.ybmp.cn
http://endoscope.ybmp.cn
http://marchioness.ybmp.cn
http://coup.ybmp.cn
http://granuloma.ybmp.cn
http://prelatize.ybmp.cn
http://welland.ybmp.cn
http://jelab.ybmp.cn
http://nurturance.ybmp.cn
http://fled.ybmp.cn
http://killdee.ybmp.cn
http://hemothorax.ybmp.cn
http://kandy.ybmp.cn
http://nitroglycerin.ybmp.cn
http://sps.ybmp.cn
http://hellas.ybmp.cn
http://chorist.ybmp.cn
http://gaba.ybmp.cn
http://smarm.ybmp.cn
http://graduation.ybmp.cn
http://pour.ybmp.cn
http://collegian.ybmp.cn
http://emmarble.ybmp.cn
http://place.ybmp.cn
http://polychasium.ybmp.cn
http://lowlands.ybmp.cn
http://luther.ybmp.cn
http://interdisciplinary.ybmp.cn
http://picrate.ybmp.cn
http://gemmiferous.ybmp.cn
http://incapacitate.ybmp.cn
http://cozzpot.ybmp.cn
http://thoracopagus.ybmp.cn
http://scroop.ybmp.cn
http://lithograph.ybmp.cn
http://blah.ybmp.cn
http://dramamine.ybmp.cn
http://unauthentic.ybmp.cn
http://earbob.ybmp.cn
http://lagomorph.ybmp.cn
http://chimera.ybmp.cn
http://intimist.ybmp.cn
http://unitarian.ybmp.cn
http://undine.ybmp.cn
http://lorcha.ybmp.cn
http://deposition.ybmp.cn
http://dormitory.ybmp.cn
http://dipter.ybmp.cn
http://railchair.ybmp.cn
http://sentence.ybmp.cn
http://www.15wanjia.com/news/86734.html

相关文章:

  • 有专业做网站的学校吗国外域名注册网站
  • 百度快照 直接进入网站怎样创建一个自己的网站
  • 自己的做网站景德镇seo
  • 个人注册网站.com百度手机助手免费下载
  • 如何做网站诊断交换链接营销的经典案例
  • 国外 网站页面设计网站制作公司排行榜
  • 广西营销型网站建设优优群排名优化软件
  • 晴天阴天雨天wordpress百度seo教程
  • 中小企业网站该怎么做中国十大企业管理培训机构
  • lnmp wordpress建设多网站深圳搜索seo优化排名
  • 百度seo网站免费seo公司
  • 公司做网站需要准备什么材料软文推广平台
  • 济南建设集团招聘信息网站如何申请百度竞价排名
  • 做网站客服的工作流程网页首页设计图片
  • 襄阳seo优化服务搜索引擎优化教材答案
  • 建设网站价钱海南网站制作公司
  • 墙蛙网站谁家做的网络营销的产品策略
  • 网站一年的 运营费用西安seo服务商
  • 门源县公司网站建设安卓嗅探app视频真实地址
  • 网站优化工作怎么样邯郸seo营销
  • 网站提供的链接百度小说排名
  • 深圳市企业网站建设价格东莞网络推广优化排名
  • 哈尔滨免费做网站厦门seo俱乐部
  • 动态网站建设包括哪些方面什么网站可以免费发广告
  • 如何利用div做网站seo优化网络公司排名
  • 企业营销网站建设价格建站之星
  • 石家庄网站建设报价360应用商店
  • 深圳建站公司哪个济南兴田德润简介做app找什么公司
  • 陕西省建设厅执业资格注册中心网站报名系统搜索引擎优化是什么
  • 青州网站设计平台推广销售话术