This question is very similar Display Values on Top of Graph Builder Bars , I am just asking a follow up question that went unanswered in the original post.
I am creating a bar graph with the Graph Builder and I want to add labels to the top of bars. I am using Graph Builder because I am using the Wrap functionality. I found how to add labels to the bars, but they default to the center of the bars. Is there any way to automatically move the labels to the top of the bars?
To go into more detail, I am using JSL to create the graph. I found that you can move the labels with
graphBuilderBox << Dispatch( {}, "Graph Builder", FrameBox, {DispatchSeg( BarSeg(1), Set Label Offset( { labelNum, xCoord, yCoord } ) ) } );
However, you move the label to the given coordinates on the current graph axis. On my graph, the Y axis is the Percent of Total Count, and I have the graph sorted by Count (essentially, a pareto graph), so it is impractical to try to get the heights of the bars to move each label individually.