Hallo Martin,
thank you for your help,
I found a way to solve it.
here is an example
public class TestChart extends Chart {
        private static final long serialVersionUID = 1L;

        public TestChart(String id, Options options, Theme theme) {
                super(id, options, theme);
        }
        
        @Override
        protected void onInitialize() {
                // TODO Auto-generated method stub
                super.onInitialize();
                String highcharts       = 
"https://code.highcharts.com/highcharts.js";;
                String exporting        = 
"https://code.highcharts.com/modules/exporting.js";;
        
JavaScriptResourceRegistry.getInstance().setHighchartsReference(highcharts);
        
JavaScriptResourceRegistry.getInstance().setHighchartsExportingReference(exporting);
        }
}

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicked-Charts-This-website-contains-interactive-content-tp4665431p4665437.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to