Bar graph - Label position?

Currenty stacked Bar Graphes dont show tooltip and show the Value above each bar part. That make it impossible to read lots of those values. So what Im searching for:

  • Adjust the Position of the value, so that the Value is in the middle of the Bar. Not above its top in the next segment already…

  • Any idea how to show Values in Tooltip? Think this is a long term bug open for years now? Any workaround or Tip?

I even tried to edit “bars.tx” and changed
(isXHorizontal ? (value < 0 ? r.y + r.h + labelOffset : r.y - labelOffset) : r.y + r.h / 2 - middleShift)
to
(isXHorizontal ? (value < 0 ? r.y + r.h + labelOffset : r.y - labelOffset) : r.y -200 + r.h / 2 - middleShift)
But hat does not changy anything. Why are changes in the template are not possible? Is this somehow precompiled or a wrong location?

Ok - found that edeting those files is not intended as transformation ts->js is only during compile time and not in a normal installed version possible.

I have the same question on positioning the values in a bar chart - any update or solution for this?