Work on date picker function on bubble chart
This commit is contained in:
parent
c206a394d2
commit
d550bf5e12
11 changed files with 139 additions and 38 deletions
|
@ -54,7 +54,7 @@ export class MoreStuffComponent implements OnInit {
|
|||
result.data.map(item => {
|
||||
graph_data.push({
|
||||
t: item.date,
|
||||
r: (item.value / 100000) + 5,
|
||||
r: (item.value / 100000) + 4,
|
||||
supplier: item.seller,
|
||||
y: item.count,
|
||||
value: item.value,
|
||||
|
@ -75,6 +75,7 @@ export class MoreStuffComponent implements OnInit {
|
|||
borderColor: 'blue',
|
||||
hoverBackgroundColor: 'blue',
|
||||
hoverBorderColor: 'blue',
|
||||
radius: 5,
|
||||
},
|
||||
];
|
||||
public supplierBubbleChartLabels: string[] = [];
|
||||
|
|
Reference in a new issue