// MIT License // Copyright (c) 2022 Tree Xie // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. package charts import ( "github.com/golang/freetype/truetype" "github.com/wcharczuk/go-chart/v2" ) type labelRenderValue struct { Text string Style Style X int Y int // 旋转 Radians float64 } type LabelValue struct { Index int Value float64 X int Y int // 旋转 Radians float64 // 字体颜色 FontColor Color } type SeriesLabelPainter struct { p *Painter seriesNames []string label *SeriesLabel theme ColorPalette font *truetype.Font values []labelRenderValue } type SeriesLabelPainterParams struct { P *Painter SeriesNames []string Label SeriesLabel Theme ColorPalette Font *truetype.Font } func NewSeriesLabelPainter(params SeriesLabelPainterParams) *SeriesLabelPainter { return &SeriesLabelPainter{ p: params.P, seriesNames: params.SeriesNames, label: ¶ms.Label, theme: params.Theme, font: params.Font, values: make([]labelRenderValue, 0), } } func (o *SeriesLabelPainter) Add(value LabelValue) { label := o.label distance := label.Distance if distance == 0 { distance = 5 } text := NewValueLabelFormatter(o.seriesNames, label.Formatter)(value.Index, value.Value, -1) labelStyle := Style{ FontColor: o.theme.GetTextColor(), FontSize: labelFontSize, Font: o.font, } if !value.FontColor.IsZero() { label.Color = value.FontColor } if !label.Color.IsZero() { labelStyle.FontColor = label.Color } p := o.p p.OverrideDrawingStyle(labelStyle) rotated := value.Radians != 0 if rotated { p.SetTextRotation(value.Radians) } textBox := p.MeasureText(text) renderValue := labelRenderValue{ Text: text, Style: labelStyle, X: value.X - textBox.Width()>>1, Y: value.Y - distance, Radians: value.Radians, } if rotated { renderValue.X = value.X + textBox.Width()>>1 - 1 p.ClearTextRotation() } else { if textBox.Width()%2 != 0 { renderValue.X++ } } o.values = append(o.values, renderValue) } func (o *SeriesLabelPainter) Render() (Box, error) { for _, item := range o.values { o.p.OverrideTextStyle(item.Style) if item.Radians != 0 { o.p.TextRotation(item.Text, item.X, item.Y, item.Radians) } else { o.p.Text(item.Text, item.X, item.Y) } } return chart.BoxZero, nil }