This commit is contained in:
parent
77fc37c92c
commit
190ddd519e
|
@ -147,6 +147,14 @@ $(function(){
|
||||||
|
|
||||||
if (document.getElementById('lineChart1')) {
|
if (document.getElementById('lineChart1')) {
|
||||||
var lineChart1 = echarts.init(document.getElementById('lineChart1'));
|
var lineChart1 = echarts.init(document.getElementById('lineChart1'));
|
||||||
|
var lineChart1_names = [];
|
||||||
|
var lineChart1_datas = [];
|
||||||
|
for(var key in last_month_sell){
|
||||||
|
lineChart1_names.push(key);
|
||||||
|
lineChart1_datas.push(last_month_sell[key]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if(lineChart1){
|
if(lineChart1){
|
||||||
lineChart1.setOption({
|
lineChart1.setOption({
|
||||||
title: {
|
title: {
|
||||||
|
@ -193,7 +201,7 @@ $(function(){
|
||||||
xAxis: [
|
xAxis: [
|
||||||
{
|
{
|
||||||
type: 'category',
|
type: 'category',
|
||||||
data : symptomName,
|
data : lineChart1_names,
|
||||||
boundaryGap : false,
|
boundaryGap : false,
|
||||||
axisLine:{
|
axisLine:{
|
||||||
lineStyle:{
|
lineStyle:{
|
||||||
|
@ -221,7 +229,7 @@ $(function(){
|
||||||
type:'line',
|
type:'line',
|
||||||
smooth:true,
|
smooth:true,
|
||||||
itemStyle: {normal: {areaStyle: {type: 'default'}}},
|
itemStyle: {normal: {areaStyle: {type: 'default'}}},
|
||||||
data:[120, 132, 101, 134, 90, 230, 210,120, 132, 101, 134, 90]
|
data:lineChart1_datas,
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue