import { Component, OnInit } from '@angular/core'; @Component({ selector: 'star-rating-demo', templateUrl: './star-rating-demo.component.html' }) export class StarRatingDemoComponent implements OnInit { valueAtPointScene1 = 4.7; valueAtPointScene2 = 88; valueAtComplexScene = 4.2; constructor() { } ngOnInit(): void { } }