mirror of https://github.com/Kozea/pygal.git
Browse Source
Fixed handling of a specified date interval for the x-axis in TimeSeries. It turns out, the problem was the child get_x_values was not being called because I was calling the parent get_data_values( 'x' ) explicitly in Plot.py. Generalized the data_max and data_min operations. Fixed get_time_range method to properly return both end points.pull/8/head
SANDIA\jaraco
19 years ago
6 changed files with 75 additions and 21 deletions
@ -0,0 +1,23 @@ |
|||||||
|
# -*- coding: UTF-8 -*- |
||||||
|
|
||||||
|
""" Setup script for building SVG distribution |
||||||
|
|
||||||
|
Copyright © 2005 Jason R. Coombs |
||||||
|
""" |
||||||
|
|
||||||
|
from distutils.core import setup |
||||||
|
|
||||||
|
__author__ = 'Jason R. Coombs <jaraco@sandia.gov>' |
||||||
|
__version__ = '$Rev: $'[6:-2] |
||||||
|
__svnauthor__ = '$Author: $'[9:-2] |
||||||
|
__date__ = '$Date: $'[7:-2] |
||||||
|
|
||||||
|
setup ( name = 'SVGChart', |
||||||
|
version = '1.0', |
||||||
|
description = 'Python SVG Charting Support', |
||||||
|
author = 'Jason R. Coombs', |
||||||
|
author_email = 'jaraco@sandia.gov', |
||||||
|
packages = ['SVG'], |
||||||
|
package_dir = { 'SVG':'.' }, |
||||||
|
script_args = ( 'bdist_wininst', ) |
||||||
|
) |
Loading…
Reference in new issue