Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VFP 9: Line Graph DataLabels

Status
Not open for further replies.

jwxpnd

Programmer
Sep 29, 2005
43
0
0
US
On a line graph is there away to automatically place the DataLabel above or below the point of the “V” so that the label is not printed on top the line?
 
Yes, I have written a VFP9 program to create graphs in my report. In the line graph portions I have use the following lines.

.SeriesCollection[1].DataLabels.Orientation = 60
.SeriesCollection[1].DataLabels.Position = 0 && top
.SeriesCollection[1].DataLabels.HorizontalAlignment = 1
.SeriesCollection[1].DataLabels.VerticalAlignment = 1

What I would like to know if there is away to automatically place the DataLabel above or below the point of the “V” so that the label is not printed on top the line?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top