|
|
@@ -129,6 +129,7 @@ async function getchart2(){
|
|
|
})
|
|
|
console.log(y)
|
|
|
const option = {
|
|
|
+
|
|
|
title: {
|
|
|
text: '模型调用次数统计',
|
|
|
subtext: '',
|
|
|
@@ -247,6 +248,9 @@ async function getEchartData(){
|
|
|
xAxis: {
|
|
|
type: 'category',
|
|
|
data: res.data.map(item => item.createDt),
|
|
|
+ axisLabel: {
|
|
|
+ fontSize: 14, // x轴标签字体大小
|
|
|
+ },
|
|
|
axisTick: {
|
|
|
show: false
|
|
|
},
|
|
|
@@ -263,6 +267,9 @@ async function getEchartData(){
|
|
|
yAxis: {
|
|
|
type: 'value',
|
|
|
name: '',
|
|
|
+ axisLabel: {
|
|
|
+ fontSize: 14, // x轴标签字体大小
|
|
|
+ },
|
|
|
axisLine: {
|
|
|
show: false
|
|
|
},
|