summaryrefslogtreecommitdiff
path: root/chart.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2021-06-11 22:48:37 +0800
committerxuri <xuri.me@gmail.com>2021-06-11 22:48:37 +0800
commit83e12cc4e5242904366a51f642596acbc9f9dd56 (patch)
treeaf3d4ecbebdd19b55bc0651d5e88bc0bc6683850 /chart.go
parent38162539b61b2b429b0498198ed58e1ef53d284b (diff)
support escaped string literal basic string and use GitHub Action instead of TravisCI
- Note that: travis-ci.org will shutdown on June 15th, 2021, and I don't have enough permission to migrate this project to travis-ci.com currently
Diffstat (limited to 'chart.go')
-rw-r--r--chart.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/chart.go b/chart.go
index 23ea776..9bc4b20 100644
--- a/chart.go
+++ b/chart.go
@@ -739,6 +739,7 @@ func parseFormatChartSet(formatSet string) (*formatChart, error) {
//
// Set the primary horizontal and vertical axis options by x_axis and y_axis. The properties of x_axis that can be set are:
//
+// none
// major_grid_lines
// minor_grid_lines
// tick_label_skip
@@ -748,6 +749,7 @@ func parseFormatChartSet(formatSet string) (*formatChart, error) {
//
// The properties of y_axis that can be set are:
//
+// none
// major_grid_lines
// minor_grid_lines
// major_unit
@@ -755,6 +757,8 @@ func parseFormatChartSet(formatSet string) (*formatChart, error) {
// maximum
// minimum
//
+// none: Disable axes.
+//
// major_grid_lines: Specifies major gridlines.
//
// minor_grid_lines: Specifies minor gridlines.