I would like to group some of my Plots into a different Category in the settings screen of the indicator.
Now I can add parameters to the Plots category by using:
# NOTE just reformatted the code a bit for clarity
[XmlIgnore]
[Display(ResourceType = typeof(Custom.Resource),
Name = "Placid lake filler",
Description = "Sets the color of a placid lake condition",
GroupName = "Plots", Order = 1)]
public System.Windows.Media.Brush PlacidLakeBrush
{ get; set; }
How would I move one Plot from the Plots category into a new category? How do I do that? I tried the following but it is not working
# NOTE just reformatted the code a bit for clarity
[Browsable(false)]
[XmlIgnore]
[Display(ResourceType = typeof(Custom.Resource),
Name = "Placid lake condition",
Description = "Placid lake condition",
GroupName = "Market Analyser Conditions",
Order = 1)]
public Series<double> PlacidLake
{
get { return Values[2]; }
}
JWR

Comment