Change animation behavior of hourly and cum chart

This commit is contained in:
Matthias 2021-01-05 19:29:57 +01:00
parent 494902eae7
commit cc203132b0
2 changed files with 3 additions and 1 deletions

View File

@ -123,7 +123,7 @@ export default class CumProfitChart extends Vue {
{
type: 'line',
name: CHART_PROFIT,
animation: false,
animation: true,
step: 'start',
lineStyle: {
color: this.getChartTheme === 'dark' ? '#c2c2c2' : 'black',

View File

@ -127,11 +127,13 @@ export default class HourlyChart extends Vue {
{
type: 'line',
name: CHART_PROFIT,
animation: false,
// symbol: 'none',
},
{
type: 'bar',
name: CHART_TRADE_COUNT,
animation: false,
itemStyle: {
color: 'rgba(150,150,150,0.3)',
},