token expire, remove console
This commit is contained in:
@@ -60,7 +60,7 @@ export var pieOptions={
|
||||
chart: {
|
||||
renderTo: "container",
|
||||
defaultSeriesType: "pie",
|
||||
backgroundColor: "rgba(0,0,0,0)"
|
||||
//backgroundColor: "rgba(255,0,0,)"
|
||||
},
|
||||
xAxis: {
|
||||
categories: [],
|
||||
@@ -80,4 +80,112 @@ export var pieOptions={
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
||||
};
|
||||
|
||||
export var ingresosvscomprasOptions = {
|
||||
chart: {
|
||||
renderTo: "container",
|
||||
defaultSeriesType: "bar",
|
||||
backgroundColor: "rgba(0,0,0,0)"
|
||||
},
|
||||
title: {
|
||||
text: "Gastos Vs Ingresos"
|
||||
},
|
||||
plotOptions: {
|
||||
bar: {
|
||||
grouping: false,
|
||||
shadow: false,
|
||||
borderWidth: 0.5
|
||||
},
|
||||
},
|
||||
legend: {
|
||||
shadow: true
|
||||
},
|
||||
|
||||
credits: {
|
||||
enabled: false
|
||||
},
|
||||
xAxis: {
|
||||
categories: [""],
|
||||
crosshair: false
|
||||
},
|
||||
yAxis: [
|
||||
{
|
||||
min: 0,
|
||||
title: {
|
||||
text: "Pesos"
|
||||
}
|
||||
}
|
||||
],
|
||||
series: [
|
||||
{
|
||||
name: "Ingresos",
|
||||
|
||||
color: "rgba(0,80,200,.5)",
|
||||
data: [150],
|
||||
pointPadding: 0.25,
|
||||
pointPlacement: -0.2
|
||||
},
|
||||
{
|
||||
name: "Gastos",
|
||||
color: "rgba(165,0,217,1)",
|
||||
data: [120],
|
||||
pointPadding: 0.3,
|
||||
pointPlacement: -0.2
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export var ingresosvsegresosOptions = {
|
||||
chart: {
|
||||
renderTo: "container",
|
||||
defaultSeriesType: "bar",
|
||||
backgroundColor: "rgba(0,0,0,0)"
|
||||
},
|
||||
title: {
|
||||
text: ""
|
||||
},
|
||||
plotOptions: {
|
||||
bar: {
|
||||
grouping: false,
|
||||
shadow: false,
|
||||
borderWidth: 0.5
|
||||
},
|
||||
},
|
||||
legend: {
|
||||
shadow: false
|
||||
},
|
||||
|
||||
credits: {
|
||||
enabled: false
|
||||
},
|
||||
xAxis: {
|
||||
categories: [""],
|
||||
crosshair: false
|
||||
},
|
||||
yAxis: [
|
||||
{
|
||||
min: 0,
|
||||
title: {
|
||||
text: "Pesos"
|
||||
}
|
||||
}
|
||||
],
|
||||
series: [
|
||||
{
|
||||
name: "Ingresos",
|
||||
|
||||
color: "rgba(0,80,200,.5)",
|
||||
data: [],
|
||||
pointPadding: 0.25,
|
||||
pointPlacement: -0.2
|
||||
},
|
||||
{
|
||||
name: "Egresos",
|
||||
color: "rgba(165,0,217,1)",
|
||||
data: [],
|
||||
pointPadding: 0.3,
|
||||
pointPlacement: -0.2
|
||||
}
|
||||
]
|
||||
};
|
||||
Reference in New Issue
Block a user