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

Plotly examples bug fixes #33507

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 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
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
Anush2303 marked this conversation as resolved.
Show resolved Hide resolved
"type": "patch",
"comment": "plotly examples bug fixes",
"packageName": "@fluentui/react-charting",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ import {
transformPlotlyJsonToHorizontalBarWithAxisProps,
isDateArray,
isNumberArray,
isMonthArray,
updateXValues,
transformPlotlyJsonToHeatmapProps,
transformPlotlyJsonToSankeyProps,
transformPlotlyJsonToGaugeProps,
Expand Down Expand Up @@ -87,6 +89,7 @@ export const DeclarativeChart: React.FunctionComponent<DeclarativeChartProps> =
const xValues = data[0].x;
const isXDate = isDateArray(xValues);
const isXNumber = isNumberArray(xValues);
const isXMonth = isMonthArray(xValues);
const colorMap = useColorMapping();
const theme = useTheme();
const isDarkTheme = theme?.isInverted ?? false;
Expand Down Expand Up @@ -163,27 +166,28 @@ export const DeclarativeChart: React.FunctionComponent<DeclarativeChartProps> =
}
case 'scatter':
const isAreaChart = data.some((series: any) => series.fill === 'tonexty' || series.fill === 'tozeroy');
if (isXDate || isXNumber) {
const renderChart = (chartProps: any) => {
if (isAreaChart) {
return (
<AreaChart
{...transformPlotlyJsonToScatterChartProps({ data, layout }, true, colorMap, isDarkTheme)}
legendProps={legendProps}
componentRef={chartRef}
/>
);
return <AreaChart {...chartProps} />;
}
return (
<LineChart
{...transformPlotlyJsonToScatterChartProps({ data, layout }, false, colorMap, isDarkTheme)}
legendProps={{
onChange: onActiveLegendsChange,
canSelectMultipleLegends: true,
selectedLegends: activeLegends,
}}
componentRef={chartRef}
/>
);
return <LineChart {...chartProps} />;
};
if (isXDate || isXNumber) {
const chartProps = {
...transformPlotlyJsonToScatterChartProps({ data, layout }, isAreaChart, colorMap, isDarkTheme),
legendProps,
};
return renderChart(chartProps);
} else if (isXMonth) {
Anush2303 marked this conversation as resolved.
Show resolved Hide resolved
const updatedData = data.map((dataPoint: any) => ({
...dataPoint,
x: updateXValues(dataPoint.x),
}));
const chartProps = {
...transformPlotlyJsonToScatterChartProps({ data: updatedData, layout }, isAreaChart, colorMap, isDarkTheme),
Anush2303 marked this conversation as resolved.
Show resolved Hide resolved
legendProps,
};
return renderChart(chartProps);
}
return (
<VerticalStackedBarChart
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,38 @@ const isDate = (value: any): boolean => !isNaN(Date.parse(value));
const isNumber = (value: any): boolean => !isNaN(parseFloat(value)) && isFinite(value);
export const isDateArray = (array: any[]): boolean => isArrayOrTypedArray(array) && array.every(isDate);
export const isNumberArray = (array: any[]): boolean => isArrayOrTypedArray(array) && array.every(isNumber);
export const isMonthArray = (array: any[]): boolean => {
if (array && array.length > 0) {
const presentYear = new Date().getFullYear();
return array.every(monthValue => {
Anush2303 marked this conversation as resolved.
Show resolved Hide resolved
return isDate(`${monthValue} 01, ${presentYear}`);
});
}
return false;
};

export const updateXValues = (xValues: any[]): any[] => {
const presentYear = new Date().getFullYear();
const dates = xValues.map(monthValue => {
Anush2303 marked this conversation as resolved.
Show resolved Hide resolved
const parsedDate = `${monthValue} 01, ${presentYear}`;
return isDate(parsedDate) ? new Date(parsedDate) : null;
});
for (let i = dates.length - 1; i > 0; i--) {
const currentMonth = dates[i]!.getMonth();
const previousMonth = dates[i - 1]!.getMonth();
const currentYear = dates[i]!.getFullYear();
const previousYear = dates[i - 1]!.getFullYear();
if (previousMonth >= currentMonth) {
dates[i - 1]!.setFullYear(dates[i]!.getFullYear() - 1);
} else if (previousYear > currentYear) {
dates[i - 1]!.setFullYear(currentYear);
}
}
xValues = xValues.map((month, index) => {
return `${month} 01, ${dates[index]!.getFullYear()}`;
});
return xValues;
};
export const getColor = (
legendLabel: string,
colorMap: React.MutableRefObject<Map<string, string>>,
Expand Down Expand Up @@ -112,7 +143,7 @@ export const transformPlotlyJsonToVSBCProps = (
mapXToDataPoints[x] = { xAxisPoint: x, chartData: [], lineData: [] };
}
const legend: string = series.name || `Series ${index1 + 1}`;
if (series.type === 'bar') {
if (series.type === 'bar' || series.type === 'scatter') {
const color = getColor(legend, colorMap, isDarkTheme);
mapXToDataPoints[x].chartData.push({
legend,
Expand Down Expand Up @@ -162,6 +193,7 @@ export const transformPlotlyJsonToGVBCProps = (
mapXToDataPoints[x].series.push({
key: legend,
data: series.y?.[index2],
xAxisCalloutData: x as string,
color,
legend,
});
Expand Down Expand Up @@ -272,7 +304,6 @@ export const transformPlotlyJsonToScatterChartProps = (
isDarkTheme?: boolean,
): ILineChartProps | IAreaChartProps => {
const { data, layout } = jsonObj;

const chartData: ILineChartPoints[] = data.map((series: any, index: number) => {
const xValues = series.x;
Anush2303 marked this conversation as resolved.
Show resolved Hide resolved
const isString = typeof xValues[0] === 'string';
Expand Down Expand Up @@ -458,15 +489,23 @@ export const transformPlotlyJsonToGaugeProps = (
const { data, layout } = jsonObj;
const firstData = data[0];

const segments = firstData.gauge?.steps?.map((step: any, index: number): IGaugeChartSegment => {
const legend = step.name || `Segment ${index + 1}`;
const color = getColor(legend, colorMap, isDarkTheme);
return {
legend,
size: step.range?.[1] - step.range?.[0],
color,
};
});
const segments = firstData.gauge?.steps?.length
? firstData.gauge.steps.map((step: any, index: number): IGaugeChartSegment => {
const legend = step.name || `Segment ${index + 1}`;
const color = getColor(legend, colorMap, isDarkTheme);
return {
legend,
size: step.range?.[1] - step.range?.[0],
color,
};
})
: [
{
legend: 'Segment 1',
size: (firstData.gauge?.range?.[1] ?? 0) - (firstData.gauge?.range?.[0] ?? 0),
color: getColor('Segment 1', colorMap, isDarkTheme),
},
];

let sublabel: string | undefined;
let sublabelColor: string | undefined;
Expand Down
Loading