Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Not to merge] - PR to deploy charts on pr site till master workflow is enabled #33270

Draft
wants to merge 10 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/chart-docsite/.storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: StorybookConfig = {
'../src/**/*.mdx',
'../src/**/index.stories.@(js|jsx|ts|tsx)',
// packages stories
'../../../packages/charts/*/stories/**/index.stories.@(js|jsx|ts|tsx)',
'../../../packages/charts/*/stories/**/index.stories.@(js|jsx|ts|tsx|mdx)',
],
};

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Test change",
"packageName": "@fluentui/react-charts-preview",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export const ChartPopover: React.FunctionComponent<ChartPopoverProps> = React.fo
yValueHoverSubCountsExists: boolean,
isLast: boolean,
): React.ReactNode {
const marginStyle: React.CSSProperties = isLast ? {} : { marginRight: '16px' };
const marginStyle: React.CSSProperties = isLast ? {} : { marginRight: '15px' };
const toDrawShape = xValue.index !== undefined && xValue.index !== -1;
const { culture } = props;
const yValue = convertToLocaleString(xValue.y, culture);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const DonutChartBasic = () => {
legend: 'second',
data: 35000,
color: getColorFromToken(DataVizPalette.color2),
xAxisCalloutData: '2020/04/20',
xAxisCalloutData: '2024/04/20',
},
];

Expand Down
Loading