Software FX Posted May 30, 2000 Report Share Posted May 30, 2000 You can control the PointLabels attribute on a per-series fashion and use the PointLabelMask to change the point label string shown in the chart ' Pass Random Data chart.OpenDataEx COD_VALUES,2,4 For i = 0 to 1 For j = 0 to 3 Chart.ValueEx(i,j) = Rnd() * 80 Next Next Chart.CloseData COD_VALUES Chart.Stacked = True Chart.Series(0).PointLabels = False Chart.Series(1).PointLabels = True Chart.Series(1).PointLabelAlign = LA_TOP Or LA_CENTER Chart.PointLabelMask = "%T" Regards, Juan Cegarra Software FX, Inc. http://support.softwarefx.com -----Original Message----- From: Julian Spora [ mailto:julian.spora@ingogo.com] Posted At: Sunday, May 28, 2000 1:25 AM Posted To: Server Conversation: Point labels on a stacked chart Subject: Point labels on a stacked chart Hi I am using the pointlabels property to show the data values on a chart. I am using a stacked style chart, with about 6 series, and would like to know how you can just show the one TOTAL value for each column in the chart. Thanks, Julian Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.