dosubot[bot] commented on issue #35554: URL: https://github.com/apache/superset/issues/35554#issuecomment-3376790690
<!-- Answer --> This is a known limitation in Superset: numeric value labels at the end of horizontal bars can get truncated or clipped when there isn't enough space, especially on smaller screens or when resizing the chart container. The label position for horizontal bars is set to "right" by default, and there isn't a user-facing setting to force full numeric label display regardless of chart size or scale. Both ECharts and NVD3 chart implementations render labels based on available space, so truncation is unavoidable in some layouts [source](https://github.com/apache/superset/issues/25131). Workarounds include changing the label position from "right" to "inside" in the ECharts transformer code (`superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformers.ts`), which requires modifying the source and recompiling Superset [source](https://github.com/apache/superset/issues/25131). Some users also create calculated columns to truncate label text or adjust chart/container size, but these do not guarantee full value display. There is currently no built-in option in Superset to control bar label placement for horizontal bar charts, though maintainers have indicated that such a feature would be welcomed [source](https://github.com/apache/superset/issues/25131). For now, the only way to always see the full value is to ensure enough space in the chart or use tooltips (recently improved for axis labels, but not for value labels) [source](https://github.com/apache/superset/pull/34759). <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/de7dd84b-6fac-4e6d-8a2e-c747c1f51f5c?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/de7dd84b-6fac-4e6d-8a2e-c747c1f51f5c?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/de7dd84b-6fac-4e6d-8a2e-c747c1f51f5c?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/de7dd84b-6fac-4e6d-8a2e-c747c1f51f5c?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/de7dd84b-6fac-4e6d-8a2e-c747c1f51f5c?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/de7dd84b-6fac-4e6d-8a2e-c747c1f51f5c?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/de7dd84b-6fac-4e6d-8a2e-c747c1f51f5c?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=githu b) [](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/issues/35554) -- 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]
