ComputeCloud Formula Examples

From dataZoa Wiki
Revision as of 11:45, 24 January 2019 by SNC (Talk | contribs) (Created page with " === Simple Examples: === <div style="margin:2em; margin-left:6em;"> <table class="Gbb1" style="width:100%;font-size:smaller;"> <tr> <td style="width:35%;font-size:larger;"...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Simple Examples:

Purpose Formula
Enable crosshairs on hover for: [x-axis, y-axis]
{
   tooltip: { crosshairs:[false, true] }
}
Set tooltip prefix, suffix, decimals and date format (%B= Month full name, %b = Month abbreviation, %m = Month number, %d = Day number, %Y = 4 digit year, %y = 2 digit year).
{
   tooltip: { valuePrefix:'$', valueSuffix:' USD', valueDecimals:2, xDateFormat:'%b-%d-%Y' }
}
Separate tooltips for each series displayed one-at-a-time (e.g. for whichever series is being hovered over).
{
   tooltip: { shared:false }
}
Separate tooltips foe each series displayed simultaneously.
{
   tooltip: { split:true }
}