Group: Forum Members
Last Active: 14 Years Ago
Posts: 0,
Visits: 1
|
Hello,
I am having difficulty changing the size of the legend on my pie chart, and I'm wondering if someone could be of assistance. I am attempting to modify the size of the legend using the legend.Size property, but no matter the value I use, the size does not change. This is the code I am using:
Dim legend1 As NLegend = nChartControl1.Legends(0) legend1.Data.ExpandMode = LegendExpandMode.ColsOnly legend1.ContentAlignment = ContentAlignment.BottomRight legend1.FillStyle = myLegendFontColor legend1.Location = NPointL(New NLength(0, NRelativeUnit.ParentPercentage), New NLength(90, NRelativeUnit.ParentPercentage)) legend1.Size = NSizeL(New NLength(50, NRelativeUnit.ParentPercentage), New NLength(50, NRelativeUnit.ParentPercentage))
I consulted the online documentation, specifically the following link, but could not find any documentation on the legend.Size property: http://helpdotnetvision.nevron.com/UsersGuide_Legend_Legend_Appearance.html Thanks very much, Ben
|