- Timestamp:
- 12/05/11 16:53:01 (13 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis.Views/3.3/DataTableView.cs
r7124 r7126 179 179 series.Color = row.VisualProperties.Color; 180 180 else series.Color = Color.Empty; 181 series.IsVisibleInLegend = row.VisualProperties.IsVisibleInLegend; 181 182 182 183 switch (row.VisualProperties.ChartType) { … … 203 204 case DataRowVisualProperties.DataRowChartType.Histogram: 204 205 series.ChartType = SeriesChartType.Column; 205 series.IsVisibleInLegend = row.VisualProperties.IsVisibleInLegend;206 206 series.SetCustomProperty("PointWidth", "1"); 207 207 if (!series.Color.IsEmpty && series.Color.GetBrightness() < 0.25) -
trunk/sources/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs
r7124 r7126 229 229 set { scaleFactor = value; } 230 230 } 231 [Storable(Name = "IsVisibleInLegend" )]231 [Storable(Name = "IsVisibleInLegend", DefaultValue = true)] 232 232 private bool StorableIsVisibleInLegend { 233 233 get { return isVisibleInLegend; }
Note: See TracChangeset
for help on using the changeset viewer.