Use datasource label for tooltip title
This commit is contained in:
parent
ab073c1874
commit
72bb96f19d
|
@ -123,7 +123,11 @@
|
||||||
if (notNull(yTickTextOffset)) {
|
if (notNull(yTickTextOffset)) {
|
||||||
chart.yTickTextOffset(yTickTextOffset)
|
chart.yTickTextOffset(yTickTextOffset)
|
||||||
}
|
}
|
||||||
tooltip.title(tooltipTitle || "Groupedbar Title")
|
if (notNull(tooltipTitle)) {
|
||||||
|
tooltip.title(tooltipTitle)
|
||||||
|
} else if (datasource.label) {
|
||||||
|
tooltip.title(datasource.label)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function bindChartEvents() {
|
function bindChartEvents() {
|
||||||
|
|
|
@ -205,8 +205,11 @@
|
||||||
if (notNull(lines)) {
|
if (notNull(lines)) {
|
||||||
chart.lines(lines)
|
chart.lines(lines)
|
||||||
}
|
}
|
||||||
|
if (notNull(tooltipTitle)) {
|
||||||
tooltip.title(tooltipTitle || "Line Tooltip")
|
tooltip.title(tooltipTitle)
|
||||||
|
} else if (datasource.label) {
|
||||||
|
tooltip.title(datasource.label)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function bindChartEvents() {
|
function bindChartEvents() {
|
||||||
|
|
Loading…
Reference in New Issue