github.com/go-graphite/carbonapi@v0.17.0/expr/types/cairo.go (about)

     1  // +build cairo
     2  
     3  package types
     4  
     5  const DefaultStackName = "__DEFAULT__"
     6  
     7  type GraphOptions struct {
     8  	// extra options
     9  	XStep     float64
    10  	Color     string
    11  	Alpha     float64
    12  	LineWidth float64
    13  	Invisible bool
    14  
    15  	DrawAsInfinite bool
    16  	SecondYAxis    bool
    17  	Dashed         float64
    18  	HasAlpha       bool
    19  	HasLineWidth   bool
    20  	Stacked        bool
    21  	StackName      string
    22  }