From 8bf46f6c6aa916169a56ffdb8a41fe63d1c15c50 Mon Sep 17 00:00:00 2001 From: Marvin Date: Tue, 26 Dec 2023 17:48:18 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E6=94=B9=E7=94=9F=E4=BA=A7=E7=9C=8B?= =?UTF-8?q?=E6=9D=BF=E7=9A=84=E5=9B=BE=E8=A1=A8=E9=A2=9C=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AMESCoreStudio.Web/Views/RPT/RPT001.cshtml | 106 +++++++++++++++++++-- 1 file changed, 98 insertions(+), 8 deletions(-) diff --git a/AMESCoreStudio.Web/Views/RPT/RPT001.cshtml b/AMESCoreStudio.Web/Views/RPT/RPT001.cshtml index ddffaffb..5877c41f 100644 --- a/AMESCoreStudio.Web/Views/RPT/RPT001.cshtml +++ b/AMESCoreStudio.Web/Views/RPT/RPT001.cshtml @@ -267,27 +267,72 @@ Highcharts.chart('divChart1', { title: { - text: queryYear.value + '生產力' + text: queryYear.value + '生產力', + style: + { + color:'#FFFFFF' + } }, subtitle: { text: '' }, + chart: { + backgroundColor:'#262626', + color:'#FFFFFF' + + }, xAxis: { - categories: xAxisData + categories: xAxisData, + labels: { + style: + { + color:'#FFFFFF' + } + } }, yAxis: { title: { - text: queryYear.value + '生產力' + text: queryYear.value + '生產力', + style: + { + color:'#FFFFFF' + } + }, + labels: { + style: + { + color:'#FFFFFF' + } } }, plotOptions: { + series: + { + lineColor:'yellow', + marker: { + fillColor:'#FFFFFF' + } + }, line: { dataLabels: { - enabled: true + enabled: true, + style: + { + color:'#FFFFFF' + } }, enableMouseTracking: false } }, + legend: { + itemStyle: { + font: '9pt Trebuchet MS, Verdana, sans-serif', + color: '#FFFFFF' + }, + itemHoverStyle:{ + color: '#FFFFFF' + } + }, series: [{ type: 'column', name: '月份', @@ -323,27 +368,72 @@ Highcharts.chart('divChart2', { title: { - text: queryYear.value + '效率' + text: queryYear.value + '效率', + style: + { + color:'#FFFFFF' + } }, subtitle: { text: '' }, + chart: { + backgroundColor:'#262626', + color:'#FFFFFF' + + }, xAxis: { - categories: xAxisData + categories: xAxisData, + labels: { + style: + { + color:'#FFFFFF' + } + } }, yAxis: { title: { - text: queryYear.value + '效率' + text: queryYear.value + '效率', + style: + { + color:'#FFFFFF' + } + }, + labels: { + style: + { + color:'#FFFFFF' + } } }, plotOptions: { + series: + { + lineColor:'yellow', + marker: { + fillColor:'#FFFFFF' + } + }, line: { dataLabels: { - enabled: true + enabled: true, + style: + { + color:'#FFFFFF' + } }, enableMouseTracking: false } }, + legend: { + itemStyle: { + font: '9pt Trebuchet MS, Verdana, sans-serif', + color: '#FFFFFF' + }, + itemHoverStyle:{ + color: '#FFFFFF' + } + }, series: [{ type: 'column', name: '月份',