index.config.ts
754 Bytes
import type { EChartsOption } from 'echarts'
import { isLightboxMode } from '@/utils/env'
export const getDefaultOption = (): EChartsOption => {
return {
tooltip: {
trigger: 'item',
confine: true,
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true,
},
dataset: {
source: isLightboxMode()
? []
: [
['product', '2015', '2016', '2017'],
['Matcha Latte', 43.3, 85.8, 93.7],
['Milk Tea', 83.1, 73.4, 55.1],
['Cheese Cocoa', 86.4, 65.2, 82.5],
['Walnut Brownie', 72.4, 53.9, 39.1],
],
},
xAxis: { type: 'category' },
yAxis: {},
series: [
{ type: 'line' },
],
}
}