Mounier Florian
a42cf70551
Merge pull request #392 from invisiblek/master
...
style: allow modifying width of normal and hovered stroke lines
7 years ago
Mounier Florian
3abb6f7832
Merge pull request #402 from taljaards/patch-1
...
Update bar documentation to show "bar_chart" and not "line_chart"
7 years ago
Mounier Florian
d57d37c2c0
Merge pull request #413 from bennuttall/patch-1
...
Fix typo in docs
7 years ago
Mounier Florian
d11605b4fa
Merge pull request #414 from johnfraney/patch-1
...
Fix typo in custom_styles.rst
7 years ago
Mounier Florian
6c93e5eefd
Merge pull request #419 from eetuko/guide_stroke_color
...
Added parametric guide lines colors
7 years ago
Mikael Koutero
34364f1c9b
Added parametric guide lines colors
7 years ago
John Franey
5b19457e7c
Fix typo in custom_styles.rst
...
`foregrond` -> `foreground`
7 years ago
Ben Nuttall
e7d4acb710
Fix typo
7 years ago
Stéphan Taljaard
8cbd317d33
Update bar.rst
7 years ago
Dan Pasanen
51a96d34bf
style: allow modifying width of normal and hovered stroke lines
7 years ago
grewn0uille
9feda5644c
Add .gitlab-ci.yml
7 years ago
Florian Mounier
7a556a2ef2
Bump 2.4.0
7 years ago
Florian Mounier
d8337ddf9a
Gen docs
7 years ago
Mounier Florian
735b06ac94
Merge pull request #339 from felixonmars/utc-date
...
Use datetime.utcfromtimestamp to generate date() object
7 years ago
Mounier Florian
840090534e
Merge pull request #343 from ShuaiQin/LogNoneValue
...
For #309 Log none value Solved
7 years ago
Mounier Florian
39f4b5759d
Merge pull request #344 from pierrrrrrre/master
...
Update World Maps documentation
7 years ago
Mounier Florian
d05be6cd3c
Merge pull request #349 from yossisal/hz_show_y_guides
...
Hz show y guides
7 years ago
Mounier Florian
705fc8fa16
Merge pull request #350 from Brandhor/master
...
wrong label colors when there are more series than colors
7 years ago
Mounier Florian
48c6396299
Merge pull request #359 from Yuliang-Lee/master
...
fix: set secondary series 'stroke_style' property to no effect
7 years ago
Mounier Florian
40be961a18
Merge pull request #385 from Necrote/master
...
generalized fix solidgauge squares algorithm issue
7 years ago
Florian Mounier
3397077f85
Add a project .isort.cfg
7 years ago
Florian Mounier
a458241061
Try to fix the build
7 years ago
Florian Mounier
8ac2442cb9
Fix import order
7 years ago
Necrote
21c63768a2
fixed solidgauge squares algorithm issue
7 years ago
Florian Mounier
2891cfe2a3
Sort imports
8 years ago
Florian Mounier
5976d1a2d3
Use a __about__.py
8 years ago
Florian Mounier
859277e432
Add Makefile
8 years ago
Florian Mounier
98b1ac3c35
Reremove pypy
8 years ago
Florian Mounier
541917444c
Missing upgrade
8 years ago
Florian Mounier
f7f2d548c2
Ahem
8 years ago
Florian Mounier
4ff4e392d3
Try to uprade pip in ci
8 years ago
Florian Mounier
382c0fdd80
Fix travis target
8 years ago
Florian Mounier
811a5575c4
Fix cairosvg python2
8 years ago
Florian Mounier
13c0d1a5ff
Cosmetic (+ add test as an extra requirements)
8 years ago
lyl107025
36cb49d668
fix: set secondary series 'stroke_style' property to no effect
...
https://github.com/Kozea/pygal/issues/358
8 years ago
Florian Mounier
5824e4dd74
2.3.1 Micro release
8 years ago
Jean-Marc Martins
3d7911e876
Fix crash with no values when the print_values_position param is set
8 years ago
Brandhor
35307acc12
fix label color when the number of series is more than the number of colors available in the style
8 years ago
yossisal
cdcdb3aab7
set y axis class according to show_y_guide
8 years ago
yossisal
9648a674e5
transpose show_x/y_guides
8 years ago
Pierre
10506b5862
Update World Maps documentation
...
Changed the nomenclature of Taiwan as per Wikipedia article:
https://en.wikipedia.org/wiki/Taiwan
8 years ago
ShuaiQin
2eff8312c9
Modify the file to pass flake8
8 years ago
qins
26f983b5c7
Solve the incident problem
8 years ago
qins
54350fd9fa
Solve #309 with flake8 constrain
8 years ago
qins
4b3fc71664
Solve #309 with flake8 constrain
8 years ago
qins
f94b0319a0
For issue #309 No new failure!
8 years ago
qins
ba9690a14f
Solve issue #309 , no new failure
8 years ago
qins
4157a2f330
Solve issue #309 , no new failure
8 years ago
qins
899bad63b0
For issue #309 modified Line.py and add a test: No new failure!
8 years ago
Felix Yan
09652d45b0
Use datetime.utcfromtimestamp to generate date() object
...
The date.fromtimestamp() method used in DateLine will treat it as local time,
which is inconsistent with the datetime.utcfromtimestamp() method used
in DateTimeLine, and causes tests to fail with timezone issues:
>>> from datetime import datetime, date
>>> t = 1473273687.227791
>>> datetime.utcfromtimestamp(t).date()
datetime.date(2016, 9, 7)
>>> date.fromtimestamp(t)
datetime.date(2016, 9, 8)
This commit changes the former to a datetime.utcfromtimestamp().date()
call, which will always return consistent result as
datetime.utcfromtimestamp() and thus fixes the tests.
8 years ago