Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12388


Ignore:
Timestamp:
05/11/15 16:08:23 (9 years ago)
Author:
pfleck
Message:

#2379 Added BubbleChartView which can select the parts of the RecursiveDataItem tree which should be searched for the selected keys (axis).

Location:
branches/BubbleChart/HeuristicLab.Optimization.BubbleChart/3.3
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/BubbleChart/HeuristicLab.Optimization.BubbleChart/3.3/HeuristicLab.Optimization.BubbleChart-3.3.csproj

    r12381 r12388  
    7777      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
    7878    </Reference>
     79    <Reference Include="HeuristicLab.Visualization.ChartControlsExtensions-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     80      <SpecificVersion>False</SpecificVersion>
     81      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Visualization.ChartControlsExtensions-3.3.dll</HintPath>
     82    </Reference>
    7983    <Reference Include="System" />
    8084    <Reference Include="System.Data" />
    8185    <Reference Include="System.Drawing" />
    8286    <Reference Include="System.Windows.Forms" />
     87    <Reference Include="System.Windows.Forms.DataVisualization" />
    8388    <Reference Include="System.Xml" />
    8489  </ItemGroup>
    8590  <ItemGroup>
     91    <Compile Include="BubbleChartView.cs">
     92      <SubType>UserControl</SubType>
     93    </Compile>
     94    <Compile Include="BubbleChartView.Designer.cs">
     95      <DependentUpon>BubbleChartView.cs</DependentUpon>
     96    </Compile>
    8697    <Compile Include="RecursiveDataItemView.cs">
    8798      <SubType>UserControl</SubType>
  • branches/BubbleChart/HeuristicLab.Optimization.BubbleChart/3.3/RecursiveDataItemView.cs

    r12381 r12388  
    5353        for (int i = 0; i < listView.Columns.Count; i++)
    5454          listView.Columns[i].AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent);
     55
    5556        foreach (var dataItem in Content.Children) {
    5657          treeView.Nodes.Add(CreateTreeNode(dataItem));
    5758        }
     59        treeView.ExpandAll();
    5860      }
    5961    }
Note: See TracChangeset for help on using the changeset viewer.