token expire, remove console

This commit is contained in:
2021-08-24 20:08:42 -05:00
parent 3b2a06b043
commit a55f45cafd
10 changed files with 279 additions and 179 deletions

View File

@@ -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
}
]
};