type ComponentWorkloadChart struct {
base.DefaultProvider Type string `json:"type,omitempty"`
State State `json:"state,omitempty"`
Props Props `json:"props,omitempty"`
}
type Grid struct {
Left string `json:"left,omitempty"`
Right string `json:"right,omitempty"`
Bottom string `json:"bottom,omitempty"`
Top string `json:"top,omitempty"`
ContainLabel bool `json:"containLabel,omitempty"`
}
type Series struct {
Name string `json:"name,omitempty"`
Type string `json:"type,omitempty"`
Stack string `json:"stack,omitempty"`
BarWidth string `json:"barWidth,omitempty"`
Label Label `json:"label,omitempty"`
Data []*int `json:"data,omitempty"`
}