I have setup a time-series bubble chart.
http://jsfiddle.net/mshaffer/kLk22j37/
The elements will be of 3 types: P, A, B.
data: [
{ x: Date.UTC(1990,1,1), y: .63, z: 1.2, name: 'P', patent: {docid:07654321, vecsim: .63, title:'My Patent Title',abstract:'My Patent Abstract',firm:'My Patent Firm', technology:'Tech 1 (title from dict) <BR /> Tech 2 (title from dict)', datefiled: 'March 1, 2005', dategranted: 'July 1, 2007'} },
{ x: Date.UTC(2010,1,1), y: .93, z: 1.1, name: 'A', application: {docid:216000313, vecsim: .93, title:'My Application Title',abstract:'My Application Abstract', firm:'My Application Firm', technology:'Tech 1 (title from dict) <BR /> Tech 2 (title from dict)', datepublished: 'August 1, 2005'} },
{ x: Date.UTC(2000,1,1), y: .73, z: 1.3, name: 'B', patent: {docid:07654321, vecsim: .73, title:'My Patent Title',abstract:'My Patent Abstract',firm:'My Patent Firm', technology:'Tech 1 (title from dict) <BR /> Tech 2 (title from dict)', datefiled: 'March 1, 2005', dategranted: 'July 1, 2007'}, application: {docid:216000313, vecsim: .77, title:'My Application Title',abstract:'My Application Abstract', firm:'My Application Firm', technology:'Tech 1 (title from dict) <BR /> Tech 2 (title from dict)', datepublished: 'August 1, 2005'} },
]
For the scenario of 'B' both (which means data exists for both "P" and "A"), I want to draw a error bar (in this case vertically) to connect the two vecsim values in the respective objects. [.77, .73]
The tooltip custom function 'writeToolTip' needs to draw the error bar, and the str so the error bar is still visible.
As a tooltip, when the hover removes, the error bar needs to also disappear.