diff --git a/extensions/chart-bubble/bubble.js b/extensions/chart-bubble/bubble.js new file mode 100644 index 0000000..8dfe607 --- /dev/null +++ b/extensions/chart-bubble/bubble.js @@ -0,0 +1,112 @@ +(function() { + var extra = {}; + + c3.chart.internal.fn.additionalConfig = { + data_pairs: [], + }; + + c3.chart.internal.fn.beforeInit = function (config) { + + var that = this; + + // update internals only when chart type is "bubble" + if (config.data.type !== 'bubble') { + return; + } + + // Set extra to ba able to be used in other part + this.extra = extra; + + extra.getKey = function (x, y) { + return x + '::' + y; + }; + + this.config.data_type = 'scatter'; + + this.config.axis_x_padding = 0; + this.config.axis_y_padding = 0; + this.config.axis_x_tick_centered = true; + this.config.axis_x_tick_format = function (d) { + return extra.names[d]; + }; + this.config.axis_y_tick_format = function (d) { + return extra.names[d]; + }; + + if (!config.color || !config.color.pattern) { + this.config.color_pattern = ['#1f77b4']; + } + + this.config.point_r = function (d) { + var names = extra.names, values = extra.values, base_length = extra.base_length, + x = names[d.x], y = d.id, key = extra.getKey(x, y), max, min, a, value, r; + + if (!base_length) { + base_length = extra.base_length = d3.min([ + that.svg.select('.c3-axis.c3-axis-y path').node().getTotalLength(), + that.svg.select('.c3-axis.c3-axis-x path').node().getTotalLength(), + ]); + } + + max = d3.max(Object.keys(values).map(function (key) { return values[key]; })); + min = d3.min(Object.keys(values).map(function (key) { return values[key]; })), + a = ((base_length / (names.length * 2)) - 1) / (Math.log(max + 1) - Math.log(min + 1)); + + value = !values[key] ? 0 : values[key]; + r = (Math.log(value + 1) - Math.log(min + 1)) * a; + + return r > 0 ? r : 0; + }; + this.config.point_sensitivity = 25; + this.config.point_focus_expand_enabled = false; + + this.config.legend_show = false; + + if (!config.tooltip || !config.tooltip.contents) { + this.config.tooltip_contents = function (d, defaultTitleFormat, defaultValueFormat, color) { + var x = extra.names[d[0].x], y = d[0].name, v = extra.values[extra.getKey(x, y)], text; + + text = "
" + x + " / " + y + " | |
---|---|
" + (!v ? 0 : v) + " |