Skip to content

Commit

Permalink
This closes #1983, support create combo chart with same types
Browse files Browse the repository at this point in the history
- Add new exported ChartLineUnset enumeration
- Fix set line type of line chart does not work
- Support set line type of scatter chart
  • Loading branch information
xuri committed Sep 5, 2024
1 parent aca04ec commit 8c0ef7f
Show file tree
Hide file tree
Showing 3 changed files with 208 additions and 180 deletions.
3 changes: 2 additions & 1 deletion chart.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ type ChartLineType byte

// This section defines the currently supported chart line types enumeration.
const (
ChartLineSolid ChartLineType = iota
ChartLineUnset ChartLineType = iota
ChartLineSolid
ChartLineNone
ChartLineAutomatic
)
Expand Down
Loading

0 comments on commit 8c0ef7f

Please sign in to comment.