Changeset 173 for trunk

Show
Ignore:
Timestamp:
03/21/09 04:57:28 (3 years ago)
Author:
lgs
Message:

Update chavier to work with last changes

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/chavier/app.py

    r163 r173  
    6565                rotate=float, 
    6666                label=unicode, 
     67                interval=int, 
    6768                ), 
    6869            y=dict( 
     
    7475                rotate=float, 
    7576                label=unicode, 
     77                interval=int, 
    7678                ), 
    7779            ), 
     
    116118        barWidthFillFraction=float, 
    117119        pieRadius=float, 
    118         colorScheme=str, 
     120        colorScheme=dict( 
     121            name=str, 
     122            args=dict( 
     123                initialColor=str, 
     124                colors=list, 
     125                ), 
     126            ), 
    119127        title=unicode, 
    120128        titleFont=str, 
  • trunk/pycha/chart.py

    r172 r173  
    698698        args=Option( 
    699699            initialColor=DEFAULT_COLOR, 
    700             colors=[], 
     700            colors=None, 
    701701            ), 
    702702    ),