要在Angular 8中使用滑块图表和图形,你可以使用第三方库如Chart.js或D3.js。这里是一个使用Chart.js的示例:
首先,你需要安装Chart.js。在终端中运行以下命令:
npm install chart.js --save
接下来,你需要在你的组件中引入Chart.js:
import { Component, OnInit } from '@angular/core';
import * as Chart from 'chart.js';
@Component({
  selector: 'app-chart',
  templateUrl: './chart.component.html',
  styleUrls: ['./chart.component.css']
})
export class ChartComponent implements OnInit {
  chart: any;
  constructor() { }
  ngOnInit() {
    this.createChart();
  }
  createChart() {
    const ctx = document.getElementById('myChart');
    this.chart = new Chart(ctx, {
      type: 'line',
      data: {
        labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
        datasets: [{
          label: 'My Dataset',
          data: [10, 20, 30, 40, 50, 60],
          backgroundColor: 'rgba(0, 123, 255, 0.5)',
          borderColor: 'rgba(0, 123, 255, 1)',
          borderWidth: 1
        }]
      },
      options: {
        responsive: true,
        scales: {
          yAxes: [{
            ticks: {
              beginAtZero: true
            }
          }]
        }
      }
    });
  }
}
在你的组件模板中,添加一个canvas元素来显示图表:
最后,你可以在你的应用中使用这个组件:
 
这将在你的应用中显示一个简单的折线图表。
请注意,这只是一个简单的示例。你可以根据Chart.js的文档和你的需求进行更高级的配置和定制。同样,你也可以使用其他的图表库,如D3.js,来实现类似的功能。