chartify/_core/chart.py [451:458]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        driver = self._initialize_webdriver()
        # Save figure as HTML
        html = file_html(self.figure, resources=INLINE, title="")
        fp = tempfile.NamedTemporaryFile("w", prefix="chartify", suffix=".html", encoding="utf-8")
        fp.write(html)
        fp.flush()
        # Open html file in the browser.
        driver.get("file:///" + fp.name)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



chartify/_core/chart.py [494:500]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        driver = self._initialize_webdriver()
        html = file_html(self.figure, resources=INLINE, title="")

        fp = tempfile.NamedTemporaryFile("w", prefix="chartify", suffix=".html", encoding="utf-8")
        fp.write(html)
        fp.flush()
        driver.get("file:///" + fp.name)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



