This commit is contained in:
XiaoDaiGua-Ray 2023-09-16 00:03:05 +08:00
parent 405e62c762
commit 4d4d5451dc
3 changed files with 11 additions and 13 deletions

View File

@ -26,12 +26,12 @@ import type {
* 1.
* 2.
* 3. json
* 4. @/components/RayChart/theme json
* 4. @/components/RChart/theme json
*/
export const setupChartTheme = () => {
// 获取所有主题
const themeRawModules: Record<string, ChartThemeRawModules> =
import.meta.glob('@/components/RayChart/theme/**/*.json', {
import.meta.glob('@/components/RChart/theme/**/*.json', {
eager: true,
})
const regx = /\/([^/]+)\.json$/

View File

@ -66,8 +66,8 @@ import type { ECharts, EChartsCoreOption, SetOptionOpts } from 'echarts/core'
export type EChartsExtensionInstallRegisters = typeof CanvasRenderer
export type { RayChartInst } from './type'
const RayChart = defineComponent({
name: 'RayChart',
export default defineComponent({
name: 'RChart',
props: {
width: {
/**
@ -369,7 +369,7 @@ const RayChart = defineComponent({
call(onError)
}
console.error('RayChart render error: ', e)
console.error('RChart render error: ', e)
}
}
@ -413,7 +413,7 @@ const RayChart = defineComponent({
// 避免重复渲染
if (echartInstance?.getDom()) {
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
@ -555,5 +555,3 @@ const RayChart = defineComponent({
)
},
})
export default RayChart

View File

@ -1,7 +1,7 @@
import './index.scss'
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'
@ -270,7 +270,7 @@ const Echart = defineComponent({
</NButton>
</NSpace>
<div class="chart--container">
<RayChart
<RChart
ref="baseChartRef"
autoChangeTheme
options={this.baseLineOptions}
@ -279,7 +279,7 @@ const Echart = defineComponent({
</div>
<NH2></NH2>
<div class="chart--container">
<RayChart
<RChart
autoChangeTheme={false}
theme="dark"
options={this.baseOptions}
@ -297,7 +297,7 @@ const Echart = defineComponent({
}}
</NSwitch>
<div class="chart--container">
<RayChart loading={this.loading} options={this.baseOptions} />
<RChart loading={this.loading} options={this.baseOptions} />
</div>
<NH2></NH2>
<NSwitch
@ -311,7 +311,7 @@ const Echart = defineComponent({
}}
</NSwitch>
<div class="chart--container">
<RayChart options={this.baseOptions} showAria={this.chartAria} />
<RChart options={this.baseOptions} showAria={this.chartAria} />
</div>
</div>
)