Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,7 @@ export default function transformProps(
showValueIndexes: showValueIndexesA,
thresholdValues,
timeShiftColor,
theme,
},
);
if (transformedSeries) series.push(transformedSeries);
Expand Down Expand Up @@ -516,6 +517,7 @@ export default function transformProps(
showValueIndexes: showValueIndexesB,
thresholdValues: thresholdValuesB,
timeShiftColor,
theme,
},
);
if (transformedSeries) series.push(transformedSeries);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ export default function transformProps(
lineStyle,
timeCompare: array,
timeShiftColor,
theme,
},
);
if (transformedSeries) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ export function transformSeries(
queryIndex?: number;
timeCompare?: string[];
timeShiftColor?: boolean;
theme?: SupersetTheme;
},
): SeriesOption | undefined {
const { name, data } = series;
Expand Down Expand Up @@ -197,6 +198,7 @@ export function transformSeries(
queryIndex = 0,
timeCompare = [],
timeShiftColor,
theme,
} = opts;
const contexts = seriesContexts[name || ''] || [];
const hasForecast =
Expand Down Expand Up @@ -323,6 +325,8 @@ export function transformSeries(
label: {
show: !!showValue,
position: isHorizontal ? 'right' : 'top',
color: theme?.colorText,
textBorderWidth: 0,

This comment was marked as resolved.

formatter: (params: any) => {
// don't show confidence band value labels, as they're already visible on the tooltip
if (
Expand Down
Loading