I have got some html files generated using plotly python.
I want to view these html using QWebView in Qt4 GUI.
QWebView* view=new QWebView();
view->setHtml(some text);
// or view->load(QUrl::fromLocalFile(path));
view->show();
But this just doesnโt work.
Does anyone know how to make it work?
Thanks.