Ignore:
Timestamp:
09/07/11 19:09:04 (13 years ago)
Author:
vmipsl
Message:

Servlet _ TimeSerie? : double axes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ether_megapoli/trunk/applets/src/com/ether/AppletPlot.java

    r178 r184  
    8282        // Top Pane 
    8383        final JPane jPaneTop = _etherPlotService.createTopPane( megapoliPlot ); 
    84         add( jPaneTop, BorderLayout.NORTH ); 
     84//        add( jPaneTop, BorderLayout.NORTH ); 
    8585 
    8686        final Integer valuesNumber = megapoliPlot.getValuesNumber(); 
     
    8888        // Bottom Pane 
    8989        final JPane jPaneBottom = _etherPlotService.createBottomPane( valuesNumber, _locale ); 
    90         add( jPaneBottom, BorderLayout.PAGE_END ); 
     90//        add( jPaneBottom, BorderLayout.PAGE_END ); 
    9191 
    9292        // Actions Panel 
     
    9696        // Graph Pane 
    9797//        final JPane jPaneGraph = _etherPlotService.createTimeSeriePlot( megapoliPlot ); 
    98         final JPane jPaneGraph = makeGraph(); 
     98        final JPlotLayout jPaneGraph = makeGraph(); 
     99        jPaneGraph.setBatch( true ); 
    99100        add( jPaneGraph, BorderLayout.CENTER ); 
    100101 
     102        final JPane gridKeyPane = jPaneGraph.getKeyPane(); 
     103        gridKeyPane.setSize( new Dimension( 600, 100 ) ); 
     104        add( gridKeyPane, BorderLayout.NORTH ); 
     105 
     106        final JPanel button = makeButtonPanel( false ); 
     107        add( button,  BorderLayout.SOUTH ); 
     108        jPaneGraph.setBatch( false ); 
    101109 
    102110//        JPanel main = new JPanel(); 
     
    346354        megapoliPlot.setTitle( _title ); 
    347355        megapoliPlot.setAxeType( _axeType ); 
    348         megapoliPlot.setParameterName( parametre.getParametreNom() ); 
    349         if( null != parametre.getUnite() && null != parametre.getUnite().getUniteCode() ) 
    350             megapoliPlot.setParameterUnitCode( parametre.getUnite().getUniteCode() ); 
     356//        megapoliPlot.setParameterName( parametre.getParametreNom() ); 
     357//        if( null != parametre.getUnite() && null != parametre.getUnite().getUniteCode() ) 
     358//            megapoliPlot.setParameterUnitCode( parametre.getUnite().getUniteCode() ); 
    351359 
    352360 
Note: See TracChangeset for help on using the changeset viewer.