Skip to content
Snippets Groups Projects
Commit 7cf0d189 authored by Radek Puš's avatar Radek Puš
Browse files

repaired tooltips in chart (two decimal at most + Kč suffix)

parent 569e9988
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,10 @@ export class HomeChartDefinitionsService {
labels: { format: '{value} Kč' },
title: { text: 'Výše útraty (Kč)' },
},
tooltip: {
valueDecimals: 2,
valueSuffix: ''
},
series: [
{
name: 'Výdaje',
......@@ -83,6 +87,10 @@ export class HomeChartDefinitionsService {
credits: {
enabled: false
},
tooltip: {
valueDecimals: 2,
valueSuffix: ''
},
series: [
{
name: 'Výdaje',
......@@ -96,11 +104,15 @@ export class HomeChartDefinitionsService {
type: 'pie'
},
title: {
text: 'Kategorie transakcí'
text: 'Třída transakcí'
},
credits: {
enabled: false
},
tooltip: {
valueDecimals: 2,
valueSuffix: ''
},
series: [
{
name: 'Výdaje',
......@@ -119,6 +131,10 @@ export class HomeChartDefinitionsService {
credits: {
enabled: false
},
tooltip: {
valueDecimals: 2,
valueSuffix: ''
},
series: [
{
name: 'Výdaje',
......@@ -137,6 +153,10 @@ export class HomeChartDefinitionsService {
credits: {
enabled: false
},
tooltip: {
valueDecimals: 2,
valueSuffix: ''
},
series: [
{
name: 'Line 1',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment