Discover Packages
github.com/xlsa/erda
internal
apps
dop
component-protocol
components
requirement-task-overview
chartBlock
burnoutChart
package
Version:
v1.0.1
Opens a new window with list of versions in this module.
Published: Aug 15, 2024
License: Apache-2.0
Opens a new window with license information.
Imports: 15
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
type BurnoutChart struct {
Type string `json:"type"`
Props Props `json:"props"`
Issues []dao .IssueItem `json:"-"`
}
type Data struct {
Name string `json:"name,omitempty"`
Coord []string `json:"coord"`
Symbol string `json:"symbol,omitempty"`
}
type Legend struct {
Show bool `json:"show"`
Bottom bool `json:"bottom"`
Data []string `json:"data"`
}
type Option struct {
XAxis XAxis `json:"xAxis"`
YAxis YAxis `json:"yAxis"`
Legend Legend `json:"legend"`
Tooltip map[string ]interface{} `json:"tooltip"`
Series []Series `json:"series"`
}
type Props struct {
ChartType string `json:"chartType"`
Title string `json:"title"`
PureChart bool `json:"pureChart"`
Option Option `json:"option"`
}
type Series struct {
Data []string `json:"data"`
Name string `json:"name"`
Type string `json:"type"`
Smooth bool `json:"smooth"`
ItemStyle map[string ]interface{} `json:"itemStyle"`
LineStyle map[string ]interface{} `json:"lineStyle,omitempty"`
}
type XAxis struct {
Type string `json:"type"`
Data []string `json:"data"`
}
type YAxis struct {
Type string `json:"type"`
AxisLine map[string ]interface{} `json:"axisLine"`
AxisLabel map[string ]interface{} `json:"axisLabel"`
Max string `json:"max"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.