dbt-selly/dbt-env/lib/python3.8/site-packages/leather/shapes/dots.py

91 lines
2.6 KiB
Python
Raw Normal View History

2022-03-22 15:13:27 +00:00
#!/usr/bin/env python
from collections import defaultdict
import xml.etree.ElementTree as ET
import six
from leather.data_types import Text
from leather.series import CategorySeries
from leather.shapes.base import Shape
from leather import theme
from leather.utils import DummySeries, X, Y
class Dots(Shape):
"""
Render a series of data as dots.
:param fill_color:
The color to fill the dots. You may also specify a
:func:`.style_function`. If not specified, default chart colors will be
used.
:param radius:
The radius of the rendered dots. Defaults to
:data:`.theme.default_dot_radius`. You may also specify a
:func:`.style_function`.
"""
def __init__(self, fill_color=None, radius=None):
self._fill_color = fill_color
self._radius = radius or theme.default_dot_radius
def validate_series(self, series):
"""
Verify this shape can be used to render a given series.
"""
if series.data_type(X) is Text or series.data_type(Y) is Text:
raise ValueError('Dots do not support Text values.')
return True
def to_svg(self, width, height, x_scale, y_scale, series, palette):
"""
Render dots to SVG elements.
"""
group = ET.Element('g')
group.set('class', 'series dots')
default_colors = defaultdict(lambda: next(palette))
for d in series.data():
if d.x is None or d.y is None:
continue
proj_x = x_scale.project(d.x, 0, width)
proj_y = y_scale.project(d.y, height, 0)
if callable(self._fill_color):
fill_color = self._fill_color(d)
elif self._fill_color:
fill_color = self._fill_color
else:
fill_color = default_colors[d.z]
if callable(self._radius):
radius = self._radius(d)
else:
radius = self._radius
group.append(ET.Element('circle',
cx=six.text_type(proj_x),
cy=six.text_type(proj_y),
r=six.text_type(radius),
fill=fill_color
))
return group
def legend_to_svg(self, series, palette):
"""
Render the legend entries for these shapes.
"""
items = []
if isinstance(series, CategorySeries):
for category in series.categories():
items.extend(Shape.legend_to_svg(self, DummySeries(category), palette))
else:
items.extend(Shape.legend_to_svg(self, series, palette))
return items