Thanks Thats great I only won't to set the marker size to be all the same anyway.
However I am still a little confused I tried using:
Dim legend as NLegend = CType(legendsCollection(0), NLegend)
legend.Data.Marksize.Width = New Length(1.5F, NRelative.ParentPercentage)
similar to what i do setting the marker size in the graph but this comes back with the error
"Expression is value and therefore cannot be the target of an assignment"
I have also tried using the following as per the manual:
Dim instance As NLegendData
Dim value As NSizeL
instance.MarkSize = value
value = instance.MarkSize
but value has two properties that can be set
value.height and value.width
and i am still not clear how to then use that in a statement as the error comes back with
"Value of tye Nevron.GrahicsCore.Nlength' cannot be converted to NevronGraphicsCore.NSizeL"
Cheers Warwick