mirror of
https://github.com/apache/superset.git
synced 2026-04-21 09:04:38 +00:00
feat(plugin-chart-echarts): support non-timeseries x-axis (#17917)
* feat(plugin-chart-echarts): support non-timeseries x-axis * fix tests * change formula return type from Date to number * add x_axis test coverage * rename func and improve coverage * add x-axis control to bar chart * remove redundant console.log * fix description * make x-axis control mandatory * 🙃 * fix x-axis formatter * fix showValues * fix implicit rDTTM_ALIAS references in postProcessing * replace TIME_COLUMN with DTTM_ALIAS * fix remaining implicit indexes * fix: Disable filtering on wide result sets (#18021) * fix: handle null values in time-series table (#18039) * cleanup column_type_mappings (#17569) Signed-off-by: Đặng Minh Dũng <dungdm93@live.com> * important change to MakeFile (#18037) * add missing is_timeseries to pivot op Co-authored-by: Erik Ritter <erik.ritter@airbnb.com> Co-authored-by: Grace Guo <grace.guo@airbnb.com> Co-authored-by: Đặng Minh Dũng <dungdm93@live.com> Co-authored-by: AAfghahi <48933336+AAfghahi@users.noreply.github.com>
This commit is contained in:
@@ -18,6 +18,8 @@
|
||||
*/
|
||||
import {
|
||||
buildQueryContext,
|
||||
DTTM_ALIAS,
|
||||
ensureIsArray,
|
||||
QueryFormData,
|
||||
normalizeOrderBy,
|
||||
RollingType,
|
||||
@@ -35,11 +37,14 @@ import {
|
||||
} from '@superset-ui/chart-controls';
|
||||
|
||||
export default function buildQuery(formData: QueryFormData) {
|
||||
const { x_axis, groupby } = formData;
|
||||
const is_timeseries = x_axis === DTTM_ALIAS || !x_axis;
|
||||
return buildQueryContext(formData, baseQueryObject => {
|
||||
const pivotOperatorInRuntime: PostProcessingPivot | undefined =
|
||||
pivotOperator(formData, {
|
||||
...baseQueryObject,
|
||||
is_timeseries: true,
|
||||
index: x_axis,
|
||||
is_timeseries,
|
||||
});
|
||||
if (
|
||||
pivotOperatorInRuntime &&
|
||||
@@ -57,7 +62,9 @@ export default function buildQuery(formData: QueryFormData) {
|
||||
return [
|
||||
{
|
||||
...baseQueryObject,
|
||||
is_timeseries: true,
|
||||
columns: [...ensureIsArray(x_axis), ...ensureIsArray(groupby)],
|
||||
series_columns: groupby,
|
||||
is_timeseries,
|
||||
// todo: move `normalizeOrderBy to extractQueryFields`
|
||||
orderby: normalizeOrderBy(baseQueryObject).orderby,
|
||||
time_offsets: isValidTimeCompare(formData, baseQueryObject)
|
||||
|
||||
Reference in New Issue
Block a user