# frozen_string_literal: true module IRuby module Chartkick class LineChart < IRuby::Chartkick::BaseChart def plot ::IRuby.html(js_prefix + line_chart(@data, id: randomized_dom_id)) end end end end