大屏开源项目go-view二次开发3----象形柱图控件(C#)

环境搭建参考:

大屏开源项目go-view二次开发1----环境搭建(C#)-CSDN博客

要做的象形柱图控件最终效果如下图:

其实这个控件我前面的文章也介绍过,不过是用wpf做的,链接如下:

wpf利用Microsoft.Web.WebView2显示html代码(以Echarts的象形柱图Velocity of Christmas Reindeers为例)_webview集成echarts,formatter-CSDN博客

这一次是在上一篇博文大屏开源项目go-view二次开发2----半环形控件(C#)-CSDN博客

的基础上继续操作:

具体步骤如下:

1 首先,我们现在从这里抄该控件的option,链接如下:

Examples - Apache ECharts

2  在src\packages\components\Charts\Others(Others目录是上一篇博文新建的,具体请参考:大屏开源项目go-view二次开发2----半环形控件(C#)-CSDN博客)新增PictorialBar目录,然后从长得最像的控件BarCrossrange拷贝文件,拷贝src\packages\components\Charts\Bars\BarCrossrange目录下的5个文件到PictorialBar目录下,如下图:

3  编辑PictorialBar目录下的config.ts的文件如下:

import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public'
import { PictorialBar } from  './index'
import { CreateComponentType } from '@/packages/index.d'
import cloneDeep from 'lodash/cloneDeep'
import dataJson from './data.json'export const includes = ['legend', 'xAxis', 'yAxis', 'grid']
export const seriesItem = {name: 'hill',type: 'pictorialBar',barCategoryGap: '-130%',symbol: 'path://M0,10 L10,10 C5.5,10 5.5,5 5,0 C4.5,5 4.5,10 0,10 z',itemStyle: {opacity: 0.5},emphasis: {itemStyle: {opacity: 1}},//data: [90, 60, 25, 18],z: 10,label: {show: true,position: 'top',color: '#e54035',fontSize: 20}
}
export const option = {tooltip: {trigger: 'axis',axisPointer: {type: 'none'}},dataset: { ...dataJson },xAxis: {show: true,type: 'category',axisTick: { show: false },axisLine: { show: false },axisLabel: {color: '#e54035',fontSize: 20}},yAxis: {show: true,type: 'value',splitLine: { show: false },axisTick: { show: false },axisLine: { show: false },axisLabel: { show: false,fontSize: 20}},color: ['#e54035'],series: [seriesItem]}export default class Config extends PublicConfigClass implements CreateComponentType {public key = PictorialBar.keypublic chartConfig = cloneDeep(PictorialBar)// 图表配置项public option = echartOptionProfixHandle(option, includes)
}

从前面抄来的option就是放在这里的,我做了相应的调整,这个文件的具体功能已经在这篇博文做了详细的介绍:大屏开源项目go-view二次开发2----半环形控件(C#)-CSDN博客

4 编辑PictorialBar目录下的config.vue的文件如下:

<template><!-- Echarts 全局设置 --> <global-setting :optionData="optionData"></global-setting><CollapseItem :name="`象形柱图`" :expanded="true"><SettingItemBox name="颜色"><SettingItem name="图形颜色"><n-color-pickersize="small":modes="['hex']"v-model:value="optionData.color"></n-color-picker></SettingItem><SettingItem name="label颜色"><n-color-pickersize="small":modes="['hex']"v-model:value="seriesList[0].label.color"></n-color-picker></SettingItem><SettingItem name="X轴颜色"><template v-if="optionData.xAxis && optionData.xAxis.axisLabel"><n-color-pickersize="small":modes="['hex']"v-model:value="optionData.xAxis.axisLabel.color"></n-color-picker></template></SettingItem></SettingItemBox><SettingItemBox name="字体大小"><SettingItem name="图例"><n-input-numberv-model:value="seriesList[0].label.fontSize"size="small":min="1"></n-input-number></SettingItem><SettingItem name="X轴"><template v-if="optionData.xAxis && optionData.xAxis.axisLabel"><n-input-numberv-model:value="optionData.xAxis.axisLabel.fontSize"size="small":min="1"></n-input-number></template></SettingItem><SettingItem name="Y轴"><template v-if="optionData.yAxis && optionData.yAxis.axisLabel"><n-input-numberv-model:value="optionData.yAxis.axisLabel.fontSize"size="small":min="1"></n-input-number></template></SettingItem></SettingItemBox></CollapseItem></template><script setup lang="ts">import { PropType, computed } from 'vue'import { GlobalSetting, CollapseItem, SettingItemBox, SettingItem } from '@/components/Pages/ChartItemSetting'import { option } from './config'import { GlobalThemeJsonType } from '@/settings/chartThemes/index'const props = defineProps({optionData: {type: Object as PropType<GlobalThemeJsonType>,required: true}})const seriesList = computed(() => {return props.optionData.series
})</script>

5  编辑PictorialBar目录下的data.json的文件如下:

{"dimensions": ["product", "data1"],"source": [{"product": "Mon","data1": 120},{"product": "Tue","data1": 200},{"product": "Wed","data1": 150},{"product": "Thu","data1": 80},{"product": "Fri","data1": 70},{"product": "Sat","data1": 110},{"product": "Sun","data1": 130}]}

6   编辑PictorialBar目录下的index.ts的文件如下:

import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'export const PictorialBar: ConfigType = {key: 'PictorialBar',chartKey: 'VPictorialBar',conKey: 'VCPictorialBar',title: '象形柱图',category: ChatCategoryEnum.OTHERCHART,categoryName: ChatCategoryEnumName.OTHERCHART,package: PackagesCategoryEnum.CHARTS,chartFrame: ChartFrameEnum.ECHARTS,image: 'PictorialBar.png'
}

接着把该图片

下载后修改名称为PictorialBar.png,并放到src\assets\images\chart\charts目录下

7    编辑PictorialBar目录下的index.vue的文件如下:

<template><v-chartref="vChartRef":init-options="initOptions":theme="themeColor":option="option":update-options="{replaceMerge: replaceMergeArr}"autoresize></v-chart></template><script setup lang="ts">import { ref, nextTick, computed, watch, PropType } from 'vue'import VChart from 'vue-echarts'import { useCanvasInitOptions } from '@/hooks/useCanvasInitOptions.hook'import { use } from 'echarts/core'import { CanvasRenderer } from 'echarts/renderers'import {  PictorialBarChart } from 'echarts/charts'import { mergeTheme } from '@/packages/public/chart'import config, { includes, seriesItem } from './config'import { useChartDataFetch } from '@/hooks'import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'import { DatasetComponent, GridComponent, TooltipComponent, LegendComponent } from 'echarts/components'import isObject from 'lodash/isObject'import cloneDeep from 'lodash/cloneDeep'const props = defineProps({themeSetting: {type: Object,required: true},themeColor: {type: Object,required: true},chartConfig: {type: Object as PropType<config>,required: true}})const initOptions = useCanvasInitOptions(props.chartConfig.option, props.themeSetting)use([DatasetComponent, CanvasRenderer,  PictorialBarChart, GridComponent, TooltipComponent, LegendComponent])const replaceMergeArr = ref<string[]>()const option = computed(() => {return mergeTheme(props.chartConfig.option, props.themeSetting, includes)})// dataset 无法变更条数的补丁watch(() => props.chartConfig.option.dataset,(newData: { dimensions: any }, oldData) => {try {if (!isObject(newData) || !('dimensions' in newData)) returnif (Array.isArray(newData?.dimensions)) {const seriesArr = []for (let i = 0; i < newData.dimensions.length - 1; i++) {seriesArr.push(cloneDeep(seriesItem))}replaceMergeArr.value = ['series']props.chartConfig.option.series = seriesArrnextTick(() => {replaceMergeArr.value = []})}} catch (error) {console.log(error)}},{deep: false})const { vChartRef } = useChartDataFetch(props.chartConfig, useChartEditStore, (newData: any) => {props.chartConfig.option.dataset = newData})</script>

8  在src\packages\components\Charts\Others的文件index.ts新增配置如下:

9  运行C#后端程序(参考文章最前面给的链接大屏开源项目go-view二次开发1----环境搭建(C#)-CSDN博客),并在前端输入npm run dev命令运行后,效果图如下:

源码可以从这里获取:

张祥裕/分享的资源名称 - Gitee.com

好了,本文的内容到此结束

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/64016.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

内网是如何访问到互联网(H3C源NAT)

H3C设备NAPT配置 直接打开29篇的拓扑&#xff0c;之前都配置好了 「模拟器、工具合集」复制整段内容 链接&#xff1a;https://docs.qq.com/sheet/DV0xxTmFDRFVoY1dQ?tab7ulgil 现在是出口路由器可以直接访问61.128.1.1&#xff0c;下面的终端访问不了&#xff0c;需要做NAPT源…

华中农业大学第十四届程序设计竞赛(新生赛)

确定这是新生赛&#xff1f;这不对吧&#xff0c;题目难度有点逆天。 A 问题一 题目描述 小雷口算推出了令人激动的、面向各个学龄的新功能&#xff1a;口算 PK&#xff01; 作为大一新生的小 S 热衷于 PK 功能&#xff0c;在其中的"100100100 以内数字比大小中&#x…

Linux高性能服务器编程中的TCP带外数据梳理总结

Linux高性能服务器编程中的TCP带外数据梳理总结 文章目录 Linux高性能服务器编程中的TCP带外数据梳理总结1.TCP 带外数据总结2.第五章带外数据send.crecv.c 3.第九章带外数据send.cselect.c 4.第十章带外数据send.csig_msg.c 1.TCP 带外数据总结 至此&#xff0c;我们讨论完了…

PyTorch3D 可视化

PyTorch3D是非常好用的3D工具库。但是PyTorch3D对于可用于debug&#xff08;例如调整cameras参数&#xff09;的可视化工具并没有进行系统的介绍。这篇文章主要是想介绍我觉得非常使用的PyTorch3D可视化工具。 1. 新建一个Mesh 从hugging face上下载一个glb文件&#xff0c;例…

C# 网络编程--关于UDP 通信(二)

UDP (User Datagram Protocol) 是一种无连接的传输层协议&#xff0c;主要用于支持数据报文的传输。它的主要特点包括简单、高效、不保证可靠性和顺序。 1.UDP协议基本概念 1.udp基于IP的简单的协议&#xff0c;不可靠的协议 2.优点&#xff1a;简单、 轻量化、 传输速度高、…

Axure高保真数据可视化大屏图表组件库

推出了一款高保真数据可视化大屏图表组件库&#xff0c;旨在为用户提供丰富的图表类型&#xff0c;使数据呈现更加直观、生动。本文将详细介绍该组件库中的各类图表元件&#xff0c;包括面积图、折线图、柱状图、条形图、圆环图、雷达图、仪表图以及综合类图表&#xff0c;以满…

基于视觉的3D占用网络汇总

综述文章:https://arxiv.org/pdf/2405.02595 基于视觉的3D占用预测方法的时间线概述: 自动驾驶中基于视觉的3D占用预测的分层结构分类 2023年的方法: TPVFormer, OccDepth, SimpleOccupancy, StereoScene, OccupancyM3D, VoxFormer, OccFormer, OVO, UniOcc, MiLO, Multi-…

一区向量加权算法优化INFO-CNN-SVM卷积神经网络结合支持向量机多特征分类预测

一区向量加权算法优化INFO-CNN-SVM卷积神经网络结合支持向量机多特征分类预测 目录 一区向量加权算法优化INFO-CNN-SVM卷积神经网络结合支持向量机多特征分类预测分类效果基本描述程序设计参考资料 分类效果 基本描述 1.Matlab实现INFO-CNN-SVM向量加权算法优化卷积神经网络结…

渗透测试-前端验签绕过之SHA256

本文是高级前端加解密与验签实战的第1篇文章&#xff0c;本系列文章实验靶场为Yakit里自带的Vulinbox靶场&#xff0c;本文讲述的是绕过SHA256签名来爆破登录。 绕过 通过查看源代码可以看到key为 1234123412341234通过查看源代码可以看到是通过SHA256来进行签名的&#xff0…

23. 迭代器

一、什么是迭代器 迭代器 指的是迭代取值的工具&#xff0c;迭代是一个重复的过程&#xff0c;每次重复都是基于上一次的结果而继续的&#xff0c;单纯的重复并不是重复。迭代器是用来迭代取值的工具&#xff0c;而涉及到把多个值循环取出的数据类型有&#xff1a;列表、字符串…

mybatisplus 分库查询

mybatisplus 分库查询 比如我们的项目有两个数据库 不同的表在不同的库 我们是可以使用mybatisplus来实现 首选引入pom <dependency><groupId>com.baomidou</groupId><artifactId>dynamic-datasource-spring-boot-starter</artifactId><vers…

UE材质常用节点

Desaturation 去色 饱和度控制 Panner 贴图流动 快捷键P Append 附加 合并 TexCoord UV平铺大小 快捷键U CustomRotator 旋转贴图 Power 幂 色阶 Mask 遮罩 Lerp 线性插值 快捷键L Abs 绝对值 Sin / Cos 正弦/余弦 Saturate 约束在0-1之间 Add 相加 快捷键A Subtra…

深入了解IPv6——光猫相关设定:DNS来源、DHCPv6服务、前缀来源等

光猫IPv6设置后的效果对比图&#xff1a; 修改前&#xff1a; 修改后&#xff1a; 一、DNS来源 1. 网络连接 来源&#xff1a; 从上游网络&#xff08;如运营商&#xff09;获取 IPv6 DNS 信息&#xff0c;通过 PPPoE 或 DHCPv6 下发。 特点&#xff1a; DNS 服务器地址直…

CentOS7下,hive4.0.0安装部署

hive安装部署 为了简单起见&#xff0c;都安装到node1服务器上。&#xff08;集群&#xff1a;node1&#xff0c;node2&#xff0c;node3&#xff09; 环境&#xff08;已安装&#xff09;&#xff1a;Hadoop3.4.0&#xff0c;jdk-8u171 需要安装&#xff1a;MySQL8.4.3&…

简单记录一下 Debian12 安装 FusionPBX 要点

cd /usr/src git clone https://github.com/fusionpbx/fusionpbx-install.sh.git 编辑 fusionpbx-install.sh/debian/resources/config.sh 下面的配置可以根据需要进行修改 domain_nameip_address # hostname, ip_address or a custom valuesystem_us…

[ZMQ] -- ZMQ通信收发多个Proto数据结构 2

为了在 ZeroMQ 的一帧数据中发送两个不同的主题&#xff08;topic&#xff09;&#xff0c;并且每个主题包含不同的 Protobuf 消息&#xff0c;可以使用多部分消息的功能。具体来说&#xff0c;将发送一个包含四部分的消息&#xff1a; 第一个主题&#xff08;topic1&#xff…

LLMs之Llama-3:Llama-3.3的简介、安装和使用方法、案例应用之详细攻略

LLMs之Llama-3&#xff1a;Llama-3.3的简介、安装和使用方法、案例应用之详细攻略 目录 相关文章 LLMs之LLaMA&#xff1a;LLaMA的简介、安装和使用方法、案例应用之详细攻略 LLMs之LLaMA-2&#xff1a;LLaMA 2的简介(技术细节)、安装、使用方法(开源-免费用于研究和商业用途…

burp(2)利用java安装burpsuite

BurpSuite安装 burpsuite 2024.10专业版&#xff0c;已经内置java环境&#xff0c;可以直接使用&#xff0c; 支持Windows linux macOS&#xff01;&#xff01;&#xff01; 内置jre环境&#xff0c;无需安装java即可使用&#xff01;&#xff01;&#xff01; bp2024.10下载…

攻防世界逆向刷题笔记(新手模式6-?)

6.1000clicks 看题目名字似乎是让咱们点击1000次之后才会出flag。本来打算用CE看能不能搜索出来数值&#xff0c;技术不到家&#xff0c;最后没有搜索到&#xff0c;还导致永劫无间打不了了。所以还是拿出IDA老实分析。 直接搜索flag字符&#xff0c;出来一大堆。张紫涵大佬说…

Coding Caprice - dynamic programming10

300. 最长递增子序列 class Solution { public:int lengthOfLIS(vector<int>& nums) {int len nums.size();map<int, int> record;int out(1);for(int &i: nums){int max_len 0;for(auto &[x, y]: record){if(x<i){max_len max(max_len, record…