From 6402da4b526071d7e01857a1c3ac5f49a32d2621 Mon Sep 17 00:00:00 2001 From: Mehmet Erim <34455572+mehmet-erim@users.noreply.github.com> Date: Thu, 30 Sep 2021 14:52:14 +0300 Subject: [PATCH] Update Chart-Component.md --- docs/en/UI/Angular/Chart-Component.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/en/UI/Angular/Chart-Component.md b/docs/en/UI/Angular/Chart-Component.md index 02d8cc5e3d..a1cea80b52 100644 --- a/docs/en/UI/Angular/Chart-Component.md +++ b/docs/en/UI/Angular/Chart-Component.md @@ -61,7 +61,6 @@ See the result: ### Doughnut ```ts -import { getRandomBackgroundColor } from '@abp/ng.components/chart.js'; import { Component } from '@angular/core'; @Component({ @@ -83,7 +82,7 @@ export class ChartDemoComponent { { label: 'Dataset 1', data: [40, 15, 45], - backgroundColor: getRandomBackgroundColor(3), + backgroundColor: ['#a0e6c3', '#f0ea4c', '#5b9dc3'], }, ], };