Changeset 109 for trunk/chavier/app.py

Show
Ignore:
Timestamp:
10/27/08 16:49:58 (4 years ago)
Author:
lgs
Message:

Some refactoring and support for negative values in line and bar charts. Inspired by Nicolas patch

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/chavier/app.py

    r108 r109  
    6565                tickCount=int, 
    6666                tickPrecision=int, 
     67                interval=int, 
    6768                range=list, 
    6869                rotate=float, 
     
    103104        shouldFill=bool, 
    104105        barWidthFillFraction=float, 
    105         xOriginIsZero=bool, 
    106         yOriginIsZero=bool, 
    107106        pieRadius=float, 
    108107        colorScheme=str, 
     
    127126        chart.addDataset(datasets) 
    128127        chart.render() 
    129         return surface 
     128        return chart 
    130129 
    131130if __name__ == '__main__':