mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
v4.2.0
This commit is contained in:
parent
405e62c762
commit
4d4d5451dc
@ -26,12 +26,12 @@ import type {
|
|||||||
* 1. 配置、选择主题
|
* 1. 配置、选择主题
|
||||||
* 2. 点击下载主题
|
* 2. 点击下载主题
|
||||||
* 3. 选择 json 类型,然后复制
|
* 3. 选择 json 类型,然后复制
|
||||||
* 4. 在 @/components/RayChart/theme 包中创建对应的 json 文件,文件名为主题名称
|
* 4. 在 @/components/RChart/theme 包中创建对应的 json 文件,文件名为主题名称
|
||||||
*/
|
*/
|
||||||
export const setupChartTheme = () => {
|
export const setupChartTheme = () => {
|
||||||
// 获取所有主题
|
// 获取所有主题
|
||||||
const themeRawModules: Record<string, ChartThemeRawModules> =
|
const themeRawModules: Record<string, ChartThemeRawModules> =
|
||||||
import.meta.glob('@/components/RayChart/theme/**/*.json', {
|
import.meta.glob('@/components/RChart/theme/**/*.json', {
|
||||||
eager: true,
|
eager: true,
|
||||||
})
|
})
|
||||||
const regx = /\/([^/]+)\.json$/
|
const regx = /\/([^/]+)\.json$/
|
||||||
|
@ -66,8 +66,8 @@ import type { ECharts, EChartsCoreOption, SetOptionOpts } from 'echarts/core'
|
|||||||
export type EChartsExtensionInstallRegisters = typeof CanvasRenderer
|
export type EChartsExtensionInstallRegisters = typeof CanvasRenderer
|
||||||
export type { RayChartInst } from './type'
|
export type { RayChartInst } from './type'
|
||||||
|
|
||||||
const RayChart = defineComponent({
|
export default defineComponent({
|
||||||
name: 'RayChart',
|
name: 'RChart',
|
||||||
props: {
|
props: {
|
||||||
width: {
|
width: {
|
||||||
/**
|
/**
|
||||||
@ -369,7 +369,7 @@ const RayChart = defineComponent({
|
|||||||
call(onError)
|
call(onError)
|
||||||
}
|
}
|
||||||
|
|
||||||
console.error('RayChart render error: ', e)
|
console.error('RChart render error: ', e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -413,7 +413,7 @@ const RayChart = defineComponent({
|
|||||||
// 避免重复渲染
|
// 避免重复渲染
|
||||||
if (echartInstance?.getDom()) {
|
if (echartInstance?.getDom()) {
|
||||||
console.warn(
|
console.warn(
|
||||||
'RayChart mount: There is a chart instance already initialized on the dom. Execution was interrupted',
|
'RChart mount: There is a chart instance already initialized on the dom. Execution was interrupted',
|
||||||
)
|
)
|
||||||
|
|
||||||
return
|
return
|
||||||
@ -555,5 +555,3 @@ const RayChart = defineComponent({
|
|||||||
)
|
)
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
export default RayChart
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import './index.scss'
|
import './index.scss'
|
||||||
|
|
||||||
import { NCard, NSwitch, NSpace, NP, NH2, NButton } from 'naive-ui'
|
import { NCard, NSwitch, NSpace, NP, NH2, NButton } from 'naive-ui'
|
||||||
import RayChart from '@/components/RChart/index'
|
import RChart from '@/components/RChart/index'
|
||||||
|
|
||||||
import dayjs from 'dayjs'
|
import dayjs from 'dayjs'
|
||||||
|
|
||||||
@ -270,7 +270,7 @@ const Echart = defineComponent({
|
|||||||
</NButton>
|
</NButton>
|
||||||
</NSpace>
|
</NSpace>
|
||||||
<div class="chart--container">
|
<div class="chart--container">
|
||||||
<RayChart
|
<RChart
|
||||||
ref="baseChartRef"
|
ref="baseChartRef"
|
||||||
autoChangeTheme
|
autoChangeTheme
|
||||||
options={this.baseLineOptions}
|
options={this.baseLineOptions}
|
||||||
@ -279,7 +279,7 @@ const Echart = defineComponent({
|
|||||||
</div>
|
</div>
|
||||||
<NH2>不跟随主题切换的暗色主题可视化图</NH2>
|
<NH2>不跟随主题切换的暗色主题可视化图</NH2>
|
||||||
<div class="chart--container">
|
<div class="chart--container">
|
||||||
<RayChart
|
<RChart
|
||||||
autoChangeTheme={false}
|
autoChangeTheme={false}
|
||||||
theme="dark"
|
theme="dark"
|
||||||
options={this.baseOptions}
|
options={this.baseOptions}
|
||||||
@ -297,7 +297,7 @@ const Echart = defineComponent({
|
|||||||
}}
|
}}
|
||||||
</NSwitch>
|
</NSwitch>
|
||||||
<div class="chart--container">
|
<div class="chart--container">
|
||||||
<RayChart loading={this.loading} options={this.baseOptions} />
|
<RChart loading={this.loading} options={this.baseOptions} />
|
||||||
</div>
|
</div>
|
||||||
<NH2>贴画可视化图</NH2>
|
<NH2>贴画可视化图</NH2>
|
||||||
<NSwitch
|
<NSwitch
|
||||||
@ -311,7 +311,7 @@ const Echart = defineComponent({
|
|||||||
}}
|
}}
|
||||||
</NSwitch>
|
</NSwitch>
|
||||||
<div class="chart--container">
|
<div class="chart--container">
|
||||||
<RayChart options={this.baseOptions} showAria={this.chartAria} />
|
<RChart options={this.baseOptions} showAria={this.chartAria} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user