mirror of
https://gitee.com/anji-plus/report.git
synced 2026-03-20 09:38:35 +08:00
新增南丁格尔玫瑰图
This commit is contained in:
@@ -4466,6 +4466,380 @@ const widgetTools = [
|
||||
// label: '中国地图',
|
||||
// icon: 'chinaMapChart',
|
||||
// },
|
||||
{
|
||||
code: 'WidgetPieNightingaleRoseArea',
|
||||
type: 'chart',
|
||||
label: '饼图-南丁格尔-面积',
|
||||
icon: 'iconicon_tubiao_bingtu',
|
||||
options: {
|
||||
// 配置
|
||||
setup: [
|
||||
{
|
||||
type: 'el-input-text',
|
||||
label: '图层名称',
|
||||
name: 'layerName',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: '饼图',
|
||||
},
|
||||
{
|
||||
type: 'vue-color',
|
||||
label: '背景颜色',
|
||||
name: 'background',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: ''
|
||||
},
|
||||
[
|
||||
{
|
||||
name: '标题设置',
|
||||
list: [
|
||||
{
|
||||
type: 'el-switch',
|
||||
label: '标题',
|
||||
name: 'isNoTitle',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: true
|
||||
},
|
||||
{
|
||||
type: 'el-input-text',
|
||||
label: '标题',
|
||||
name: 'titleText',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: ''
|
||||
},
|
||||
{
|
||||
type: 'vue-color',
|
||||
label: '字体颜色',
|
||||
name: 'textColor',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: '#fff'
|
||||
},
|
||||
{
|
||||
type: 'el-select',
|
||||
label: '字体粗细',
|
||||
name: 'textFontWeight',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
selectOptions: [
|
||||
{ code: 'normal', name: '正常' },
|
||||
{ code: 'bold', name: '粗体' },
|
||||
{ code: 'bolder', name: '特粗体' },
|
||||
{ code: 'lighter', name: '细体' }
|
||||
],
|
||||
value: 'normal'
|
||||
},
|
||||
{
|
||||
type: 'el-input-number',
|
||||
label: '字体大小',
|
||||
name: 'textFontSize',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: 20
|
||||
},
|
||||
{
|
||||
type: 'el-select',
|
||||
label: '字体位置',
|
||||
name: 'textAlign',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
selectOptions: [
|
||||
{ code: 'center', name: '居中' },
|
||||
{ code: 'left', name: '左对齐' },
|
||||
{ code: 'right', name: '右对齐' },
|
||||
],
|
||||
value: 'left'
|
||||
},
|
||||
{
|
||||
type: 'el-input-text',
|
||||
label: '副标题',
|
||||
name: 'subText',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: ''
|
||||
},
|
||||
{
|
||||
type: 'vue-color',
|
||||
label: '字体颜色',
|
||||
name: 'subTextColor',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: ''
|
||||
},
|
||||
{
|
||||
type: 'el-select',
|
||||
label: '字体粗细',
|
||||
name: 'subTextFontWeight',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
selectOptions: [
|
||||
{ code: 'normal', name: '正常' },
|
||||
{ code: 'bold', name: '粗体' },
|
||||
{ code: 'bolder', name: '特粗体' },
|
||||
{ code: 'lighter', name: '细体' }
|
||||
],
|
||||
value: 'normal'
|
||||
},
|
||||
{
|
||||
type: 'el-input-number',
|
||||
label: '字体大小',
|
||||
name: 'subTextFontSize',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: 12
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: '数值设定',
|
||||
list: [
|
||||
{
|
||||
type: 'el-switch',
|
||||
label: '显示',
|
||||
name: 'isShow',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: true,
|
||||
},
|
||||
{
|
||||
type: 'el-switch',
|
||||
label: '数值',
|
||||
name: 'numberValue',
|
||||
require: false,
|
||||
placeholder: '',
|
||||
value: true,
|
||||
},
|
||||
{
|
||||
type: 'el-switch',
|
||||
label: '百分比',
|
||||
name: 'percentage',
|
||||
require: false,
|
||||
placeholder: '',
|
||||
value: false,
|
||||
},
|
||||
{
|
||||
type: 'el-input-number',
|
||||
label: '字体大小',
|
||||
name: 'fontSize',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: 14,
|
||||
},
|
||||
{
|
||||
type: 'vue-color',
|
||||
label: '字体颜色',
|
||||
name: 'subTextColor',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: ''
|
||||
},
|
||||
{
|
||||
type: 'el-select',
|
||||
label: '字体粗细',
|
||||
name: 'fontWeight',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
selectOptions: [
|
||||
{ code: 'normal', name: '正常' },
|
||||
{ code: 'bold', name: '粗体' },
|
||||
{ code: 'bolder', name: '特粗体' },
|
||||
{ code: 'lighter', name: '细体' }
|
||||
],
|
||||
value: 'normal'
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: '提示语设置',
|
||||
list: [
|
||||
{
|
||||
type: 'el-input-number',
|
||||
label: '字体大小',
|
||||
name: 'fontSize',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: 12
|
||||
},
|
||||
{
|
||||
type: 'vue-color',
|
||||
label: '网格线颜色',
|
||||
name: 'lineColor',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: ''
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: '图例操作',
|
||||
list: [
|
||||
{
|
||||
type: 'el-switch',
|
||||
label: '图例',
|
||||
name: 'isShowLegend',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: true,
|
||||
},
|
||||
{
|
||||
type: 'vue-color',
|
||||
label: '字体颜色',
|
||||
name: 'lengedColor',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: '#fff',
|
||||
},
|
||||
{
|
||||
type: 'el-input-text',
|
||||
label: '字体大小',
|
||||
name: 'lengedFontSize',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: 16,
|
||||
},
|
||||
{
|
||||
type: 'el-input-number',
|
||||
label: '图例宽度',
|
||||
name: 'lengedWidth',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
value: 15,
|
||||
},
|
||||
{
|
||||
type: 'el-select',
|
||||
label: '横向位置',
|
||||
name: 'lateralPosition',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
selectOptions: [
|
||||
{ code: 'left', name: '左对齐' },
|
||||
{ code: 'right', name: '右对齐' },
|
||||
],
|
||||
value: ''
|
||||
},
|
||||
{
|
||||
type: 'el-select',
|
||||
label: '纵向位置',
|
||||
name: 'longitudinalPosition',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
selectOptions: [
|
||||
{ code: 'top', name: '顶部' },
|
||||
{ code: 'bottom', name: '底部' },
|
||||
],
|
||||
value: ''
|
||||
},
|
||||
{
|
||||
type: 'el-select',
|
||||
label: '布局前置',
|
||||
name: 'layoutFront',
|
||||
required: false,
|
||||
placeholder: '',
|
||||
selectOptions: [
|
||||
{ code: 'vertical', name: '竖排' },
|
||||
{ code: 'horizontal', name: '横排' },
|
||||
],
|
||||
value: ''
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: '自定义配色',
|
||||
list: [
|
||||
{
|
||||
type: 'customColor',
|
||||
label: '',
|
||||
name: 'customColor',
|
||||
required: false,
|
||||
value: [{ color: '#ED0E0E' }, { color: '#6CCD17' }, { color: '#172CCD' }, { color: '#B817CD' }, { color: '#AFCD17' }],
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
],
|
||||
// 数据
|
||||
data: [
|
||||
{
|
||||
type: 'el-radio-group',
|
||||
label: '数据类型',
|
||||
name: 'dataType',
|
||||
require: false,
|
||||
placeholder: '',
|
||||
selectValue: true,
|
||||
selectOptions: [
|
||||
{
|
||||
code: 'staticData',
|
||||
name: '静态数据',
|
||||
},
|
||||
{
|
||||
code: 'dynamicData',
|
||||
name: '动态数据',
|
||||
},
|
||||
],
|
||||
value: 'staticData',
|
||||
},
|
||||
{
|
||||
type: 'el-button',
|
||||
label: '静态数据',
|
||||
name: 'staticData',
|
||||
required: false,
|
||||
placeholder: 'px',
|
||||
relactiveDom: 'dataType',
|
||||
relactiveDomValue: 'staticData',
|
||||
value: '[{"value": 1048,"name": "搜索引擎"},{"value": 735, "name": "直接访问"},{"value": 580, "name": "邮件营销"},{"value": 484,"name":"联盟广告"},{"value":300,"name":"视频广告"}]',
|
||||
},
|
||||
{
|
||||
type: 'dycustComponents',
|
||||
label: '',
|
||||
name: 'dynamicData',
|
||||
required: false,
|
||||
placeholder: 'px',
|
||||
relactiveDom: 'dataType',
|
||||
chartType: 'widget-piechart',
|
||||
relactiveDomValue: 'dynamicData',
|
||||
value: '',
|
||||
},
|
||||
],
|
||||
// 坐标
|
||||
position: [
|
||||
{
|
||||
type: 'el-input-number',
|
||||
label: '左边距',
|
||||
name: 'left',
|
||||
required: false,
|
||||
placeholder: 'px',
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
type: 'el-input-number',
|
||||
label: '上边距',
|
||||
name: 'top',
|
||||
required: false,
|
||||
placeholder: 'px',
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
type: 'el-input-number',
|
||||
label: '宽度',
|
||||
name: 'width',
|
||||
required: false,
|
||||
placeholder: '该容器在1920px大屏中的宽度',
|
||||
value: 400,
|
||||
},
|
||||
{
|
||||
type: 'el-input-number',
|
||||
label: '高度',
|
||||
name: 'height',
|
||||
required: false,
|
||||
placeholder: '该容器在1080px大屏中的高度',
|
||||
value: 200,
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
const getToolByCode = function (code) {
|
||||
|
||||
@@ -0,0 +1,342 @@
|
||||
<template>
|
||||
<div :style="styleObj">
|
||||
<v-chart :options="options" autoresize/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import echarts from 'echarts';
|
||||
export default {
|
||||
name: 'WidgetPieNightingaleRoseArea', //南丁格尔玫瑰图面积模式 参考:https://echarts.apache.org/examples/zh/editor.html?c=pie-roseType-simple
|
||||
components: {},
|
||||
props: {
|
||||
value: Object,
|
||||
ispreview: Boolean,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
options: {
|
||||
legend: {
|
||||
top: 'bottom'
|
||||
},
|
||||
toolbox: {
|
||||
show: true,
|
||||
feature: {
|
||||
mark: {show: true},
|
||||
dataView: {show: true, readOnly: false},
|
||||
restore: {show: true},
|
||||
saveAsImage: {show: true}
|
||||
}
|
||||
},
|
||||
series: [
|
||||
{
|
||||
name: '面积模式',
|
||||
type: 'pie',
|
||||
radius: [50, 250],
|
||||
center: ['50%', '50%'],
|
||||
roseType: 'area',
|
||||
itemStyle: {
|
||||
borderRadius: 8
|
||||
},
|
||||
data: [
|
||||
{value: 40, name: 'rose 1'},
|
||||
{value: 38, name: 'rose 2'},
|
||||
{value: 32, name: 'rose 3'},
|
||||
{value: 30, name: 'rose 4'},
|
||||
{value: 28, name: 'rose 5'},
|
||||
{value: 26, name: 'rose 6'},
|
||||
{value: 22, name: 'rose 7'},
|
||||
{value: 18, name: 'rose 8'}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
optionsStyle: {}, // 样式
|
||||
optionsData: {}, // 数据
|
||||
optionsSetup: {},
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
styleObj() {
|
||||
return {
|
||||
position: this.ispreview ? 'absolute' : 'static',
|
||||
width: this.optionsStyle.width + 'px',
|
||||
height: this.optionsStyle.height + 'px',
|
||||
left: this.optionsStyle.left + 'px',
|
||||
top: this.optionsStyle.top + 'px',
|
||||
background: this.optionsSetup.background,
|
||||
}
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
value: {
|
||||
handler(val) {
|
||||
console.log(val)
|
||||
this.optionsStyle = val.position
|
||||
this.optionsData = val.data
|
||||
this.optionsCollapse = val.setup
|
||||
this.optionsSetup = val.setup
|
||||
this.editorOptions()
|
||||
},
|
||||
deep: true,
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
this.optionsStyle = this.value.position
|
||||
this.optionsData = this.value.data
|
||||
this.optionsCollapse = this.value.setup
|
||||
this.optionsSetup = this.value.setup
|
||||
this.editorOptions()
|
||||
},
|
||||
methods: {
|
||||
// 修改图标options属性
|
||||
editorOptions() {
|
||||
this.setOptionsTitle()
|
||||
// this.setOptionsX()
|
||||
// this.setOptionsY()
|
||||
// this.setOptionsTop()
|
||||
// this.setOptionsTooltip()
|
||||
// this.setOptionsMargin()
|
||||
// this.setOptionsLegend()
|
||||
// this.setOptionsColor()
|
||||
this.setOptionsData()
|
||||
},
|
||||
// 标题修改
|
||||
setOptionsTitle() {
|
||||
const optionsCollapse = this.optionsSetup
|
||||
const title = {}
|
||||
title.text = optionsCollapse.titleText
|
||||
title.show = optionsCollapse.isNoTitle
|
||||
title.left = optionsCollapse.textAlign
|
||||
title.textStyle = {
|
||||
color: optionsCollapse.textColor,
|
||||
fontSize: optionsCollapse.textFontSize,
|
||||
fontWeight: optionsCollapse.textFontWeight,
|
||||
}
|
||||
title.subtext = optionsCollapse.subText
|
||||
title.subtextStyle = {
|
||||
color: optionsCollapse.subTextColor,
|
||||
fontWeight: optionsCollapse.subTextFontWeight,
|
||||
fontSize: optionsCollapse.subTextFontSize,
|
||||
}
|
||||
|
||||
this.options.title = title
|
||||
},
|
||||
// X轴设置
|
||||
setOptionsX() {
|
||||
const optionsCollapse = this.optionsSetup
|
||||
const xAxis = {
|
||||
type: 'category',
|
||||
show: optionsCollapse.hideX, // 坐标轴是否显示
|
||||
name: optionsCollapse.xName, // 坐标轴名称
|
||||
nameTextStyle: {
|
||||
color: optionsCollapse.xNameColor,
|
||||
fontSize: optionsCollapse.xNameFontSize,
|
||||
},
|
||||
nameRotate: optionsCollapse.textAngle, // 文字角度
|
||||
inverse: optionsCollapse.reversalX, // 轴反转
|
||||
axisLabel: {
|
||||
show: true,
|
||||
interval: optionsCollapse.textInterval, // 文字角度
|
||||
rotate: optionsCollapse.textAngle, // 文字角度
|
||||
textStyle: {
|
||||
color: optionsCollapse.Xcolor, // x轴 坐标文字颜色
|
||||
fontSize: optionsCollapse.fontSizeX,
|
||||
},
|
||||
},
|
||||
axisLine: {
|
||||
show: true,
|
||||
lineStyle: {
|
||||
color: '#fff',
|
||||
},
|
||||
},
|
||||
}
|
||||
this.options.xAxis = xAxis
|
||||
},
|
||||
// Y轴设置
|
||||
setOptionsY() {
|
||||
const optionsCollapse = this.optionsSetup
|
||||
const yAxis = {
|
||||
type: 'value',
|
||||
show: optionsCollapse.isShowY, // 坐标轴是否显示
|
||||
name: optionsCollapse.textNameY, // 坐标轴名称
|
||||
nameTextStyle: {
|
||||
color: optionsCollapse.NameColorY,
|
||||
fontSize: optionsCollapse.NameFontSizeY,
|
||||
},
|
||||
inverse: optionsCollapse.reversalY, // 轴反转
|
||||
axisLabel: {
|
||||
show: true,
|
||||
textStyle: {
|
||||
color: optionsCollapse.colorY, // x轴 坐标文字颜色
|
||||
fontSize: optionsCollapse.fontSizeY,
|
||||
},
|
||||
},
|
||||
splitLine: {
|
||||
show: false,
|
||||
},
|
||||
axisLine: {
|
||||
show: true,
|
||||
lineStyle: {
|
||||
color: '#fff',
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
this.options.yAxis = yAxis
|
||||
},
|
||||
// 数值设定 or 柱体设置
|
||||
setOptionsTop() {
|
||||
const optionsCollapse = this.optionsSetup
|
||||
const series = this.options.series
|
||||
|
||||
for (const key in series) {
|
||||
if (series[key].type == 'bar') {
|
||||
series[key].label = {
|
||||
show: optionsCollapse.isShow,
|
||||
position: 'top',
|
||||
distance: 10,
|
||||
fontSize: optionsCollapse.fontSize,
|
||||
color: optionsCollapse.subTextColor,
|
||||
fontWeight: optionsCollapse.fontWeight,
|
||||
}
|
||||
series[key].barWidth = optionsCollapse.maxWidth
|
||||
series[key].barMinHeight = optionsCollapse.minHeight
|
||||
}
|
||||
}
|
||||
this.options.series = series
|
||||
},
|
||||
// tooltip 设置
|
||||
setOptionsTooltip() {
|
||||
const optionsCollapse = this.optionsSetup
|
||||
const tooltip = {
|
||||
trigger: 'item',
|
||||
show: true,
|
||||
textStyle: {
|
||||
color: optionsCollapse.lineColor,
|
||||
fontSize: optionsCollapse.fontSize,
|
||||
},
|
||||
}
|
||||
this.options.tooltip = tooltip
|
||||
},
|
||||
// 边距设置
|
||||
setOptionsMargin() {
|
||||
const optionsCollapse = this.optionsSetup
|
||||
const grid = {
|
||||
left: optionsCollapse.marginLeft,
|
||||
right: optionsCollapse.marginRight,
|
||||
bottom: optionsCollapse.marginBottom,
|
||||
top: optionsCollapse.marginTop,
|
||||
containLabel: true,
|
||||
}
|
||||
this.options.grid = grid
|
||||
},
|
||||
// 图例操作 legend
|
||||
setOptionsLegend() {
|
||||
const optionsCollapse = this.optionsSetup
|
||||
const legend = this.options.legend
|
||||
legend.show = optionsCollapse.isShowLegend
|
||||
legend.left = optionsCollapse.lateralPosition == 'left' ? 0 : 'auto'
|
||||
legend.right = optionsCollapse.lateralPosition == 'right' ? 0 : 'auto'
|
||||
legend.top = optionsCollapse.longitudinalPosition == 'top' ? 0 : 'auto'
|
||||
legend.bottom = optionsCollapse.longitudinalPosition == 'bottom' ? 0 : 'auto'
|
||||
legend.orient = optionsCollapse.layoutFront
|
||||
legend.textStyle = {
|
||||
color: optionsCollapse.lengedColor,
|
||||
fontSize: optionsCollapse.fontSize,
|
||||
}
|
||||
legend.itemWidth = optionsCollapse.lengedWidth
|
||||
},
|
||||
// 图例颜色修改
|
||||
setOptionsColor() {
|
||||
const optionsCollapse = this.optionsSetup
|
||||
const customColor = optionsCollapse.customColor
|
||||
if (!customColor) return
|
||||
const arrColor = []
|
||||
for (let i = 0; i < customColor.length; i++) {
|
||||
arrColor.push(customColor[i].color)
|
||||
}
|
||||
const itemStyle = {
|
||||
normal: {
|
||||
color: (params) => {
|
||||
return arrColor[params.dataIndex]
|
||||
},
|
||||
barBorderRadius: optionsCollapse.radius,
|
||||
},
|
||||
}
|
||||
for (const key in this.options.series) {
|
||||
if (this.options.series[key].type == 'bar') {
|
||||
this.options.series[key].itemStyle = itemStyle
|
||||
}
|
||||
}
|
||||
this.options = Object.assign({}, this.options)
|
||||
},
|
||||
// 数据解析
|
||||
setOptionsData() {
|
||||
const optionsSetup = this.optionsSetup
|
||||
console.log(optionsSetup)
|
||||
const optionsData = this.optionsData // 数据类型 静态 or 动态
|
||||
console.log(optionsData)
|
||||
optionsData.dataType == 'staticData' ? this.staticDataFn(optionsData.staticData, optionsSetup) : this.dynamicDataFn(optionsData.dynamicData, optionsSetup)
|
||||
},
|
||||
// 静态数据
|
||||
staticDataFn(val, optionsSetup) {
|
||||
const staticData = JSON.parse(val)
|
||||
// x轴
|
||||
if (optionsSetup.verticalShow) {
|
||||
this.options.xAxis.data = []
|
||||
this.options.yAxis.data = staticData.categories
|
||||
this.options.xAxis.type = 'value'
|
||||
this.options.yAxis.type = 'category'
|
||||
} else {
|
||||
this.options.xAxis.data = staticData.categories
|
||||
this.options.yAxis.data = []
|
||||
this.options.xAxis.type = 'category'
|
||||
this.options.yAxis.type = 'value'
|
||||
}
|
||||
// series
|
||||
const series = this.options.series
|
||||
for (const i in series) {
|
||||
if (series[i].type == 'bar') {
|
||||
series[i].data = staticData.series[0].data
|
||||
}
|
||||
}
|
||||
},
|
||||
// 动态数据
|
||||
dynamicDataFn(val, optionsSetup) {
|
||||
console.log(val)
|
||||
if (!val) return
|
||||
// x轴
|
||||
if (optionsSetup.verticalShow) {
|
||||
this.options.xAxis.data = []
|
||||
this.options.yAxis.data = val.xAxis
|
||||
this.options.xAxis.type = 'value'
|
||||
this.options.yAxis.type = 'category'
|
||||
} else {
|
||||
this.options.xAxis.data = val.xAxis
|
||||
this.options.yAxis.data = []
|
||||
this.options.xAxis.type = 'category'
|
||||
this.options.yAxis.type = 'value'
|
||||
}
|
||||
|
||||
// series
|
||||
const series = this.options.series
|
||||
for (const i in series) {
|
||||
if (series[i].type == 'bar') {
|
||||
series[i].data = val.series[i].data
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.echarts {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-width: 200px;
|
||||
min-height: 200px;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
@@ -36,6 +36,7 @@ import WidgetPiechart from "./widgetPiechart.vue";
|
||||
import WidgetHollowPiechart from "./widgetHollowPiechart.vue";
|
||||
import WidgetFunnel from "./widgetFunnel.vue";
|
||||
import WidgetGauge from "./widgetGauge.vue";
|
||||
import WidgetPieNightingaleRoseArea from "./pie/widgetPieNightingaleRoseArea";
|
||||
export default {
|
||||
name: "Widget",
|
||||
components: {
|
||||
@@ -54,7 +55,8 @@ export default {
|
||||
WidgetPiechart,
|
||||
WidgetHollowPiechart,
|
||||
WidgetFunnel,
|
||||
WidgetGauge
|
||||
WidgetGauge,
|
||||
WidgetPieNightingaleRoseArea
|
||||
},
|
||||
model: {
|
||||
prop: "value",
|
||||
|
||||
Reference in New Issue
Block a user