项目作者: xi

项目描述 :
SVG charts without dependencies
高级语言: Python
项目地址: git://github.com/xi/simplecharts.git
创建时间: 2019-02-19T12:40:00Z
项目社区:https://github.com/xi/simplecharts

开源协议:MIT License

下载


Features

  • no external dependencies
  • produces clean SVG
  • available charts: grouped columns, stacked columns, lines, stacked
    areas

Limitations

  • not interactive
  • not configurable
  • maximum of 6 colors
  • no wrapping for long labels

Usage

  1. from simplecharts import StackedColumnRenderer
  2. renderer = StackedColumnRenderer()
  3. data = {
  4. 'rows': [{
  5. 'label': 'Apples',
  6. 'values': [3, 2, 5],
  7. }, {
  8. 'label': 'Oranges',
  9. 'values': [4, 2, 3],
  10. }, {
  11. 'label': 'Pears',
  12. 'values': [4, 3, 4],
  13. }, {
  14. 'label': 'Bananas',
  15. 'values': [5, 1, 2],
  16. }],
  17. 'legend': ['John', 'Jane', 'Joe'],
  18. }
  19. svg = renderer.render(data)

example