diff --git a/dist/frappe-charts.esm.js b/dist/frappe-charts.esm.js index 9f23094..7783778 100644 --- a/dist/frappe-charts.esm.js +++ b/dist/frappe-charts.esm.js @@ -89,10 +89,10 @@ class SvgTip { }) { this.parent = parent; this.colors = colors; - this.title_name = ''; - this.title_value = ''; - this.list_values = []; - this.title_value_first = 0; + this.titleName = ''; + this.titleValue = ''; + this.listValues = []; + this.titleValueFirst = 0; this.x = 0; this.y = 0; @@ -104,16 +104,16 @@ class SvgTip { } setup() { - this.make_tooltip(); + this.makeTooltip(); } refresh() { this.fill(); - this.calc_position(); - // this.show_tip(); + this.calcPosition(); + // this.showTip(); } - make_tooltip() { + makeTooltip() { this.container = $.create('div', { inside: this.parent, className: 'graph-svg-tip comparison', @@ -121,27 +121,27 @@ class SvgTip {