org.bklab.flow.chartjs.ChartJsModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-vaadin-flow Show documentation
Show all versions of fluent-vaadin-flow Show documentation
Broderick Labs for fluent vaadin flow. Inherits common Vaadin components.
package org.bklab.flow.chartjs;
import com.vaadin.flow.templatemodel.TemplateModel;
/**
* Represents chart's necessary data to be created.
* jsonChart aggregates jsonChartData and jsonChartOptions.
*/
public interface ChartJsModel extends TemplateModel {
void setChartJs(String jsonChart);
void setChartData(String jsonChartData);
void setChartOptions(String jsonChartOptions);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy