mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-03 12:47:17 -06:00
Update chart options.
This commit is contained in:
parent
2dddc843ce
commit
b062222c45
@ -68,6 +68,13 @@ Chart.defaults.global.maintainAspectRatio = false;
|
|||||||
*/
|
*/
|
||||||
var defaultAreaOptions = {
|
var defaultAreaOptions = {
|
||||||
scales: {
|
scales: {
|
||||||
|
xAxes: [
|
||||||
|
{
|
||||||
|
gridLines: {
|
||||||
|
display: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
yAxes: [{
|
yAxes: [{
|
||||||
display: true,
|
display: true,
|
||||||
ticks: {
|
ticks: {
|
||||||
@ -104,20 +111,14 @@ var defaultPieOptions = {
|
|||||||
|
|
||||||
|
|
||||||
var defaultLineOptions = {
|
var defaultLineOptions = {
|
||||||
// scaleShowGridLines: false,
|
|
||||||
// pointDotRadius: 2,
|
|
||||||
// datasetStrokeWidth: 1,
|
|
||||||
// pointHitDetectionRadius: 5,
|
|
||||||
// animation: false,
|
|
||||||
// datasetFill: false,
|
|
||||||
// scaleFontSize: 10,
|
|
||||||
// responsive: false,
|
|
||||||
// scaleLabel: " <%= accounting.formatMoney(value) %>",
|
|
||||||
// tooltipFillColor: "rgba(0,0,0,0.5)",
|
|
||||||
// tooltipTemplate: "<%if (label){%><%=label%>: <%}%> <%= accounting.formatMoney(value) %>",
|
|
||||||
// multiTooltipTemplate: "<%=datasetLabel%>: <%= accounting.formatMoney(value) %>"
|
|
||||||
|
|
||||||
scales: {
|
scales: {
|
||||||
|
xAxes: [
|
||||||
|
{
|
||||||
|
gridLines: {
|
||||||
|
display: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
yAxes: [{
|
yAxes: [{
|
||||||
display: true,
|
display: true,
|
||||||
ticks: {
|
ticks: {
|
||||||
@ -142,6 +143,13 @@ var defaultLineOptions = {
|
|||||||
|
|
||||||
var defaultColumnOptions = {
|
var defaultColumnOptions = {
|
||||||
scales: {
|
scales: {
|
||||||
|
xAxes: [
|
||||||
|
{
|
||||||
|
gridLines: {
|
||||||
|
display: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
yAxes: [{
|
yAxes: [{
|
||||||
ticks: {
|
ticks: {
|
||||||
callback: function (tickValue, index, ticks) {
|
callback: function (tickValue, index, ticks) {
|
||||||
@ -167,7 +175,10 @@ var defaultStackedColumnOptions = {
|
|||||||
stacked: true,
|
stacked: true,
|
||||||
scales: {
|
scales: {
|
||||||
xAxes: [{
|
xAxes: [{
|
||||||
stacked: true
|
stacked: true,
|
||||||
|
gridLines: {
|
||||||
|
display: false
|
||||||
|
}
|
||||||
}],
|
}],
|
||||||
yAxes: [{
|
yAxes: [{
|
||||||
stacked: true,
|
stacked: true,
|
||||||
|
Loading…
Reference in New Issue
Block a user