This commit is contained in:
SuriyaR 2019-08-08 12:34:48 +05:30
parent 27cf734fec
commit 3dce0b0a3b

View File

@ -403,6 +403,7 @@ export class GraphListComponent implements OnInit {
let BlocksChartDate = res.response.blockDate; let BlocksChartDate = res.response.blockDate;
let TargetDifficulty = res.response.TargetDifficulty; let TargetDifficulty = res.response.TargetDifficulty;
let range = [res.response.Minrange, res.response.Maxrange] let range = [res.response.Minrange, res.response.Maxrange]
let tickformat = res.response.tickFormat;
this.lg_last = this.lg_last =
TargetDifficulty[TargetDifficulty.length - 1]; TargetDifficulty[TargetDifficulty.length - 1];
@ -412,7 +413,8 @@ export class GraphListComponent implements OnInit {
DifficultychartDate, DifficultychartDate,
TargetDifficulty, TargetDifficulty,
this.Type, this.Type,
range range,
tickformat
); );
break; break;
case 'target': case 'target':
@ -420,7 +422,8 @@ export class GraphListComponent implements OnInit {
DifficultychartDate, DifficultychartDate,
TargetDifficulty, TargetDifficulty,
this.Type, this.Type,
range range,
tickformat
); );
break; break;
} }
@ -460,7 +463,7 @@ export class GraphListComponent implements OnInit {
}); });
} }
difficultyChartFunc(DifficultychartDate, TargetDifficulty, Type, range) { difficultyChartFunc(DifficultychartDate, TargetDifficulty, Type, range, tickformat) {
console.log('range rangerangerange@@@@@@@22444',range); console.log('range rangerangerange@@@@@@@22444',range);
this.linearGraphData = { this.linearGraphData = {
data: [ data: [
@ -512,7 +515,7 @@ export class GraphListComponent implements OnInit {
showlegend: false, showlegend: false,
xaxis: { xaxis: {
tickangle: -45, tickangle: -45,
tickformat: '%m-%d', tickformat: tickformat,
showgrid: true, showgrid: true,
fixedrange: true fixedrange: true
}, },
@ -738,6 +741,7 @@ export class GraphListComponent implements OnInit {
} }
growthFunc(gDate, gReward, gaddedreward) { growthFunc(gDate, gReward, gaddedreward) {
console.log('gDate gReward gaddedreward',gDate, gReward, gaddedreward)
this.growthGraphData = { this.growthGraphData = {
data: [ data: [
{ {
@ -1087,7 +1091,7 @@ export class GraphListComponent implements OnInit {
options: null, options: null,
}; };
} }
totaldifficultyChartFunc(DifficultychartDate, TargetDifficulty, Type, range) { totaldifficultyChartFunc(DifficultychartDate, TargetDifficulty, Type, range, tickformat) {
this.linearTotalGraphData = { this.linearTotalGraphData = {
data: [ data: [
{ {
@ -1098,7 +1102,7 @@ export class GraphListComponent implements OnInit {
type: 'scatter', type: 'scatter',
name: '', name: '',
line: { color: '#ac3333' }, line: { color: '#ac3333' },
hovertemplate: '%{x}<br> Difficulty : %{text:,}', hovertemplate: '%{DifficultychartDate}<br> Difficulty : %{text:,}',
}, },
], ],
layout: { layout: {
@ -1108,7 +1112,7 @@ export class GraphListComponent implements OnInit {
showlegend: false, showlegend: false,
xaxis: { xaxis: {
tickangle: -45, tickangle: -45,
tickformat: '%m-%d', tickformat: tickformat,
fixedrange: true, fixedrange: true,
showgrid: true showgrid: true
}, },