mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
v4.2.0
This commit is contained in:
parent
405e62c762
commit
4d4d5451dc
@ -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$/
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user