blob: e378af5e1ebe926bc021a9597a00b5e91b9b14f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Maps short string names to classes for library adapters.
Epoch._typeMap =
'area': Epoch.Chart.Area
'bar': Epoch.Chart.Bar
'line': Epoch.Chart.Line
'pie': Epoch.Chart.Pie
'scatter': Epoch.Chart.Scatter
'histogram': Epoch.Chart.Histogram
'time.area': Epoch.Time.Area
'time.bar': Epoch.Time.Bar
'time.line': Epoch.Time.Line
'time.gauge': Epoch.Time.Gauge
'time.heatmap': Epoch.Time.Heatmap
|