Yes. Add DisplayValues:0 in the Options parameter.
Perfect, this is what I was looking for!
Such feature is not built in BarChart. What you could do is to create BarChar bitmap - pBitmap := BarChart(), than get Gdip_GraphicsFromImage(), and than overwrite part of bar where "27 & 22" are written; first with rectangle - Gdip_FillRoundedRectangle() or Gdip_FillRectangle, and than write Gdip_TextToGraphics().
If you set DisplayValues := 0, then you could store the names and alter any text subsequent which is what I desired. Thanks!
var_1 := "Steve: Oldest"
var_2 := "Jenny: Youngest"
AgeChart =
(
Mike 24
%var_1% 27
Chris 25
%var_2% 22
Marry 23
)
;....etc...
BarChart(AgeChart, "AgePic", 1, "Age", Skin, "DisplayValues:0")