Padding settings in mobile

This commit is contained in:
shunmugam 2019-09-26 13:59:16 +05:30
parent 71e2f20971
commit d391927ccd

View File

@ -622,6 +622,7 @@ export class GraphListComponent implements OnInit {
let domain_start = 0; let domain_start = 0;
let left_margin = 5; let left_margin = 5;
let cuckoo_position=null; let cuckoo_position=null;
let right_margin= 10;
if(window_width > 700) if(window_width > 700)
{ {
position = 0.10; position = 0.10;
@ -629,6 +630,7 @@ export class GraphListComponent implements OnInit {
domain_start = 0.18; domain_start = 0.18;
left_margin = 5; left_margin = 5;
cuckoo_position = null; cuckoo_position = null;
right_margin = 10;
} }
else else
{ {
@ -637,6 +639,7 @@ export class GraphListComponent implements OnInit {
domain_start = 0.23; domain_start = 0.23;
left_margin = 25; left_margin = 25;
cuckoo_position= 0.20; cuckoo_position= 0.20;
right_margin = 20;
} }
// console.log('range rangerangerange',range); // console.log('range rangerangerange',range);
@ -706,7 +709,7 @@ export class GraphListComponent implements OnInit {
}, },
margin: { margin: {
l: left_margin, l: left_margin,
r: 10, r: right_margin,
b: 50, b: 50,
t: 50, t: 50,
}, },
@ -1379,6 +1382,7 @@ export class GraphListComponent implements OnInit {
let domain_start = 0; let domain_start = 0;
let left_margin = 5; let left_margin = 5;
let tick_size = 11; let tick_size = 11;
let right_margin= 10;
if(window_width > 700) if(window_width > 700)
{ {
position = 0.10; position = 0.10;
@ -1386,6 +1390,7 @@ export class GraphListComponent implements OnInit {
domain_start = 0.18; domain_start = 0.18;
left_margin = 5; left_margin = 5;
tick_size = 12; tick_size = 12;
right_margin= 10;
} }
else else
{ {
@ -1394,6 +1399,7 @@ export class GraphListComponent implements OnInit {
domain_start = 0.34; domain_start = 0.34;
left_margin = 5; left_margin = 5;
tick_size = 10; tick_size = 10;
right_margin= 20;
} }
this.linearTotalGraphData = { this.linearTotalGraphData = {
data: data, data: data,
@ -1457,7 +1463,7 @@ export class GraphListComponent implements OnInit {
}, },
margin: { margin: {
l: left_margin, l: left_margin,
r: 2, r: right_margin,
b: 50, b: 50,
t: 50, t: 50,
}, },