dosubot[bot] commented on issue #31696:
URL: https://github.com/apache/superset/issues/31696#issuecomment-2568943740
<!-- Answer -->
To correctly order a line chart's x-axis when concatenating numbers and
strings, such as "1a", "2b", and "10c", in Superset version master/latest-dev,
you should use the `forceCategorical` control. This control allows you to make
the x-axis categorical, which is suitable for non-numeric, mixed-type data like
"1a", "2b", and "10c".
Here's the relevant configuration:
```tsx
export const forceCategorical: ControlSetItem = {
name: 'forceCategorical',
config: {
type: 'CheckboxControl',
label: t('Force categorical'),
default: false,
renderTrigger: true,
description: t('Make the x-axis categorical'),
},
};
```
By enabling the `forceCategorical` option, the x-axis will treat the values
as categorical data, ensuring they are ordered correctly based on their string
values rather than numerically
<sup>[[1]](https://github.com/apache/superset/blob/master/superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx)</sup>.
<!-- Dosu Comment Footer -->
*To continue talking to [Dosu](https://dosu.dev), mention @dosu.*
---
<sup>Help Dosu learn! Give it feedback: [Great
Response](https://app.dosu.dev/response-feedback/c2dd7bca-bbbf-48b5-b8ca-8654050bc4b6?feedback_type=great_response)
| [Irrelevant
Answer](https://app.dosu.dev/response-feedback/c2dd7bca-bbbf-48b5-b8ca-8654050bc4b6?feedback_type=irrelevant_answer)
| [Incorrect
Sources](https://app.dosu.dev/response-feedback/c2dd7bca-bbbf-48b5-b8ca-8654050bc4b6?feedback_type=incorrect_sources)
| [Too
Verbose](https://app.dosu.dev/response-feedback/c2dd7bca-bbbf-48b5-b8ca-8654050bc4b6?feedback_type=too_verbose)
|
[Hallucination](https://app.dosu.dev/response-feedback/c2dd7bca-bbbf-48b5-b8ca-8654050bc4b6?feedback_type=hallucination)
|
[Other](https://app.dosu.dev/response-feedback/c2dd7bca-bbbf-48b5-b8ca-8654050bc4b6?feedback_type=other)</sup>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]