Used the result color from the color palette file for the home page overview results by funder graph

This commit is contained in:
Stefania Martziou 2021-04-13 21:41:51 +00:00
parent 26b2bc9cfd
commit bfc4b81137
2 changed files with 3 additions and 2 deletions

View File

@ -157,7 +157,7 @@
<div class="md-card chartCard">
<div class="md-card-content">
<app-treemap-highchart *ngIf="fundersResultsData" [chartTitle]="'Research results by funder'"
[chartData]="fundersResultsData" [color]="'#072AE6'"></app-treemap-highchart>
[chartData]="fundersResultsData" [color]="resultColor"></app-treemap-highchart>
</div>
</div>
</div>

View File

@ -6,7 +6,7 @@ import { DataHandlerService } from '../../services/data-handler.service';
import { CountryTableData, EuropeData } from '../../domain/overview-map-data';
import { environment } from '../../../environments/environment';
import { TreemapHighchartsData } from '../../domain/treemap-highcharts-data';
import { publicationPalette, datasetPalette, softwarePalette, otherResearchProductsPalette } from '../../chart-palettes';
import { publicationPalette, datasetPalette, softwarePalette, otherResearchProductsPalette, resultColor } from '../../chart-palettes';
@Component({
selector: 'app-data-view',
@ -25,6 +25,7 @@ export class DataViewComponent implements OnInit {
private datasetPalette = datasetPalette;
private softwarePalette = softwarePalette;
private otherResearchProductsPalette = otherResearchProductsPalette;
private resultColor = resultColor;
activeView: string = 'absolute';
contentAbsoluteSelection: string = 'affiliated';