Skip to content

Instantly share code, notes, and snippets.

@diegoeche
Created December 15, 2009 23:51
Show Gist options
  • Save diegoeche/257419 to your computer and use it in GitHub Desktop.
Save diegoeche/257419 to your computer and use it in GitHub Desktop.
/// The lowest value for a range marked by a green color.
///
/// Default Value: none
greenFrom : float
/// The highest value for a range marked by a green color.
///
/// Default Value: none
greenTo : float
/// Height of the chart in pixels.
/// Default Value: Container's width
height : float
/// Labels for major tick marks. The number of labels define the number of
/// major ticks in all gauges. The default is five major ticks, with the
/// labels of the minimal and maximal gauge value.
///
/// Default Value: none
majorTicks : obj(*Array of strings*)
/// The maximal value of a gauge.
///
/// Default Value: 100
max : float
/// The minimal value of a gauge.
///
/// Default Value: 0
min : float
/// The number of minor tick section in each major tick section.
///
/// Default Value: 2
minorTicks : float
/// The lowest value for a range marked by a red color.
///
/// Default Value: none
redFrom : float
/// The highest value for a range marked by a red color.
///
/// Default Value: none
redTo : float
/// Width of the chart in pixels.
/// Default Value: Container's width
width : float
/// The lowest value for a range marked by a yellow color.
///
/// Default Value: none
yellowFrom : float
/// The highest value for a range marked by a yellow color.
///
/// Default Value: none
yellowTo : float
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment