-
Notifications
You must be signed in to change notification settings - Fork 353
How tooltip behaves on grouped option?
Jae Sung Park edited this page Jul 30, 2019
·
1 revision
Explanation of how behaves the current tooltip.grouped
option.
var chart = bb.generate({
data: {
columns: [
["data1", 300, 150, 300],
["data2", 130, 150, 140]
],
types: {
data2: "scatter"
},
},
tooltip: {
grouped: true | false
}
});
-
bubble/scatter
chart types: display as not grouped. -
other
chart types: display as grouped.
-
all
chart types: display as not grouped.-
But for the points where
line & bubble/scatter
stacks each other, there's no way on displaying all stacked data points. -
Only shows the first-ish data from the node structure.
Note the below example, 'data1' set as 'scatter' type and only displays 'data1' tooltip only which is the first node structurally.
-
- Why we decided to start billboard.js?
- Comparison table
- How to migrate from C3.js?
- Who's using billboard.js
- Third party applications
- Themes
- Roadmap
- Architecture & Event
- Plugin Interface
- Release workflow
- How behaves for dynamic loading?
- How tooltip behaves on grouped option?
- How to load as ESM directly from the browser?
- How to implement realtime chart?
- How to bundle for legacy browsers?
- How to generate chart image in Node.js environment?
- Understanding padding