Skip to content

Commit 8c0ef7f

Browse files
committed
This closes qax-os#1983, support create combo chart with same types
- Add new exported ChartLineUnset enumeration - Fix set line type of line chart does not work - Support set line type of scatter chart
1 parent aca04ec commit 8c0ef7f

File tree

3 files changed

+208
-180
lines changed

3 files changed

+208
-180
lines changed

chart.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ type ChartLineType byte
8585

8686
// This section defines the currently supported chart line types enumeration.
8787
const (
88-
ChartLineSolid ChartLineType = iota
88+
ChartLineUnset ChartLineType = iota
89+
ChartLineSolid
8990
ChartLineNone
9091
ChartLineAutomatic
9192
)

0 commit comments

Comments
 (0)