Sorry, I have no idea what you mean. The code I am using is:
NMapLegendRange mapLegend = (NMapLegendRange)nevronMap.GetLegend(fillRuleRange);
mapLegend.Title = this.MapDefinition.LegendTitle;
mapLegend.RangeFormatString = "<= {1:" + numberStringFormat + "}";
mapLegend.LastFormatString = "> {0:" + numberStringFormat + "}";
Panel legendControl = new Panel();
legendControl.Name = LegendPanelControlName;
legendControl.Dock = DockStyle.Top;
// Create the legend
mapLegend.Create((Panel)legendControl);
There seems to be no way for me to change the appearance of the legend, just call Create()