Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
AtishayMsft committed Oct 27, 2024
1 parent 86df4de commit 7d7a3c8
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { html } from '@microsoft/fast-element';
import type { Meta, Story, StoryArgs } from '../helpers.stories.js';
import { renderComponent } from '../helpers.stories.js';
import { HorizontalBarChart as FluentHorizontalBarChart } from './horizontalbarchart.js';
import { IChartDataPoint, IChartProps } from './horizontalbarchart.options.js';
import { ChartDataPoint, ChartProps } from './horizontalbarchart.options.js';

const singleBarHBCData = [
{
Expand Down Expand Up @@ -186,7 +186,7 @@ const singleBarNMVariantData = [
},
];

const chartPoints1: IChartDataPoint[] = [
const chartPoints1: ChartDataPoint[] = [
{
legend: 'Debit card numbers (EU and USA)',
data: 40,
Expand Down Expand Up @@ -214,7 +214,7 @@ const chartPoints1: IChartDataPoint[] = [
},
];

const chartPoints2: IChartDataPoint[] = [
const chartPoints2: ChartDataPoint[] = [
{
legend: 'Debit card numbers (EU and USA)',
data: 40,
Expand Down Expand Up @@ -242,7 +242,7 @@ const chartPoints2: IChartDataPoint[] = [
},
];

const chartPoints3: IChartDataPoint[] = [
const chartPoints3: ChartDataPoint[] = [
{
legend: 'Phone Numbers',
data: 40,
Expand All @@ -255,7 +255,7 @@ const chartPoints3: IChartDataPoint[] = [
},
];

const data: IChartProps[] = [
const data: ChartProps[] = [
{
chartTitle: 'Monitored First',
chartData: chartPoints1,
Expand Down

0 comments on commit 7d7a3c8

Please sign in to comment.