-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchart_option.go
319 lines (283 loc) · 8.68 KB
/
chart_option.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
package charts
import (
"fmt"
"github.com/golang/freetype/truetype"
)
type ChartOption struct {
// OutputFormat specifies the output type of chart, "svg" or "png", default value is "png".
OutputFormat string
// Width is the width of chart, default width is 600.
Width int
// Height is the height of chart, default height is 400.
Height int
// Theme specifies the colors used for the chart. Built in themes can be loaded using GetTheme with
// "light", "dark", "vivid-light", "vivid-dark", "ant" or "grafana".
Theme ColorPalette
// Padding specifies the padding for chart, default padding is [20, 10, 10, 10].
Padding Box
// XAxis are options for the x-axis.
XAxis XAxisOption
// YAxis are options for the y-axis (at most two).
YAxis []YAxisOption
// Title are options for rendering the title.
Title TitleOption
// Legend are options for the data legend.
Legend LegendOption
// Font is the font to use for rendering the chart.
Font *truetype.Font
// Box specifies the canvas box for the chart.
Box Box
// SeriesList provides the data series.
SeriesList SeriesList
// RadarIndicators are radar indicator list for radar charts.
RadarIndicators []RadarIndicator
// SymbolShow set this to *false or *true (using False() or True()) to force if the symbols should be shown or hidden.
SymbolShow *bool
// LineStrokeWidth is the stroke width for line charts.
LineStrokeWidth float64
// FillArea set to true to fill the area under the line in line charts
FillArea bool
// FillOpacity is the opacity (alpha) of the area fill in line charts.
FillOpacity uint8
// BarWidth is the width of the bars for bar charts.
BarWidth int
// BarHeight is the height of the bars for horizontal bar charts.
BarHeight int
// Children are Child charts to render together.
Children []ChartOption
parent *Painter
// ValueFormatter to format numeric values into labels.
ValueFormatter ValueFormatter
}
// OptionFunc option function
type OptionFunc func(opt *ChartOption)
// SVGOutputOptionFunc set svg type of chart's output.
func SVGOutputOptionFunc() OptionFunc {
return outputFormatOptionFunc(ChartOutputSVG)
}
// PNGOutputOptionFunc set png type of chart's output.
func PNGOutputOptionFunc() OptionFunc {
return outputFormatOptionFunc(ChartOutputPNG)
}
// outputFormatOptionFunc set type of chart's output.
func outputFormatOptionFunc(t string) OptionFunc {
return func(opt *ChartOption) {
opt.OutputFormat = t
}
}
// FontOptionFunc set font of chart.
func FontOptionFunc(font *truetype.Font) OptionFunc {
return func(opt *ChartOption) {
opt.Font = font
}
}
// ThemeNameOptionFunc set them of chart by name.
func ThemeNameOptionFunc(theme string) OptionFunc {
return func(opt *ChartOption) {
opt.Theme = GetTheme(theme)
}
}
// ThemeOptionFunc set them of chart
func ThemeOptionFunc(theme ColorPalette) OptionFunc {
return func(opt *ChartOption) {
opt.Theme = theme
}
}
// TitleOptionFunc set title of chart
func TitleOptionFunc(title TitleOption) OptionFunc {
return func(opt *ChartOption) {
opt.Title = title
}
}
// TitleTextOptionFunc set title text of chart
func TitleTextOptionFunc(text string, subtext ...string) OptionFunc {
return func(opt *ChartOption) {
opt.Title.Text = text
if len(subtext) != 0 {
opt.Title.Subtext = subtext[0]
}
}
}
// LegendOptionFunc set legend of chart
func LegendOptionFunc(legend LegendOption) OptionFunc {
return func(opt *ChartOption) {
opt.Legend = legend
}
}
// LegendLabelsOptionFunc set legend labels of chart
func LegendLabelsOptionFunc(labels []string) OptionFunc {
return func(opt *ChartOption) {
opt.Legend = LegendOption{
Data: labels,
}
}
}
// XAxisOptionFunc set x-axis of chart
func XAxisOptionFunc(xAxisOption XAxisOption) OptionFunc {
return func(opt *ChartOption) {
opt.XAxis = xAxisOption
}
}
// XAxisDataOptionFunc set x-axis data of chart
func XAxisDataOptionFunc(data []string) OptionFunc {
return func(opt *ChartOption) {
opt.XAxis = XAxisOption{
Data: data,
}
}
}
// YAxisOptionFunc set y-axis of chart, supports up to two y-axis.
func YAxisOptionFunc(yAxisOption ...YAxisOption) OptionFunc {
return func(opt *ChartOption) {
opt.YAxis = yAxisOption
}
}
// YAxisDataOptionFunc set y-axis data of chart
func YAxisDataOptionFunc(data []string) OptionFunc {
return func(opt *ChartOption) {
opt.YAxis = []YAxisOption{
{
Data: data,
},
}
}
}
// DimensionsOptionFunc sets the width and height dimensions of the chart.
func DimensionsOptionFunc(width, height int) OptionFunc {
return func(opt *ChartOption) {
opt.Width = width
opt.Height = height
}
}
// PaddingOptionFunc set padding of chart
func PaddingOptionFunc(padding Box) OptionFunc {
return func(opt *ChartOption) {
opt.Padding = padding
}
}
// SeriesShowLabel set the series show label state for all series.
func SeriesShowLabel(show bool) OptionFunc {
return func(opt *ChartOption) {
for index := range opt.SeriesList {
opt.SeriesList[index].Label.Show = BoolPointer(show)
}
}
}
// ChildOptionFunc adds a Child chart on top of the current one. Use Padding and Box for positioning.
func ChildOptionFunc(child ...ChartOption) OptionFunc {
return func(opt *ChartOption) {
if opt.Children == nil {
opt.Children = make([]ChartOption, 0)
}
opt.Children = append(opt.Children, child...)
}
}
// RadarIndicatorOptionFunc set radar indicator of chart
func RadarIndicatorOptionFunc(names []string, values []float64) OptionFunc {
return func(opt *ChartOption) {
opt.RadarIndicators = NewRadarIndicators(names, values)
}
}
// MarkLineOptionFunc set mark line for series of chart
func MarkLineOptionFunc(seriesIndex int, markLineTypes ...string) OptionFunc {
return func(opt *ChartOption) {
if len(opt.SeriesList) <= seriesIndex {
return
}
opt.SeriesList[seriesIndex].MarkLine = NewMarkLine(markLineTypes...)
}
}
// MarkPointOptionFunc set mark point for series of chart
func MarkPointOptionFunc(seriesIndex int, markPointTypes ...string) OptionFunc {
return func(opt *ChartOption) {
if len(opt.SeriesList) <= seriesIndex {
return
}
opt.SeriesList[seriesIndex].MarkPoint = NewMarkPoint(markPointTypes...)
}
}
func (o *ChartOption) fillDefault() error {
o.Width = getDefaultInt(o.Width, defaultChartWidth)
o.Height = getDefaultInt(o.Height, defaultChartHeight)
yaxisCount := o.SeriesList.getYAxisCount()
if yaxisCount < 0 {
return fmt.Errorf("series specified invalid y-axis index")
}
if len(o.YAxis) < yaxisCount {
yAxisOptions := make([]YAxisOption, yaxisCount)
copy(yAxisOptions, o.YAxis)
o.YAxis = yAxisOptions
}
// TODO - this is a hack, we need to update the yaxis based on the markpoint state
// TODO - but can't do this earlier due to needing the axis initialized
// TODO - we should reconsider the API for configuration
for _, sl := range o.SeriesList {
if len(sl.MarkPoint.Data) > 0 { // if graph has markpoint
// adjust padding scale to give space for mark point (if not specified by user)
for i := range o.YAxis {
if o.YAxis[i].RangeValuePaddingScale == nil {
o.YAxis[i].RangeValuePaddingScale = FloatPointer(2.5)
}
}
break
}
}
if o.Font == nil {
o.Font = GetDefaultFont()
}
if o.Theme == nil {
o.Theme = GetDefaultTheme()
}
fillThemeDefaults(o.Theme, &o.Title, &o.Legend, &o.XAxis)
if o.Padding.IsZero() {
o.Padding = defaultPadding
}
return nil
}
func fillThemeDefaults(defaultTheme ColorPalette, title *TitleOption, legend *LegendOption, xaxis *XAxisOption) {
if title.Theme == nil {
title.Theme = defaultTheme
}
if legend.Theme == nil {
legend.Theme = defaultTheme
}
if xaxis.Theme == nil {
xaxis.Theme = defaultTheme
}
}
// LineRender line chart render
func LineRender(values [][]float64, opts ...OptionFunc) (*Painter, error) {
return Render(ChartOption{
SeriesList: NewSeriesListLine(values),
}, opts...)
}
// BarRender bar chart render
func BarRender(values [][]float64, opts ...OptionFunc) (*Painter, error) {
return Render(ChartOption{
SeriesList: NewSeriesListBar(values),
}, opts...)
}
// HorizontalBarRender horizontal bar chart render
func HorizontalBarRender(values [][]float64, opts ...OptionFunc) (*Painter, error) {
return Render(ChartOption{
SeriesList: NewSeriesListHorizontalBar(values),
}, opts...)
}
// PieRender pie chart render
func PieRender(values []float64, opts ...OptionFunc) (*Painter, error) {
return Render(ChartOption{
SeriesList: NewSeriesListPie(values),
}, opts...)
}
// RadarRender radar chart render
func RadarRender(values [][]float64, opts ...OptionFunc) (*Painter, error) {
return Render(ChartOption{
SeriesList: NewSeriesListRadar(values),
}, opts...)
}
// FunnelRender funnel chart render
func FunnelRender(values []float64, opts ...OptionFunc) (*Painter, error) {
return Render(ChartOption{
SeriesList: NewSeriesListFunnel(values),
}, opts...)
}