org.dashbuilder.renderer.chartjs.lib.options.IsResponsive Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dashbuilder-renderer-chartjs Show documentation
Show all versions of dashbuilder-renderer-chartjs Show documentation
Dashbuilder Renderer for the Chart JS API
package org.dashbuilder.renderer.chartjs.lib.options;
public interface IsResponsive {
final String RESPONSIVE = "responsive";
final String MAINTAIN_ASPECT_RATIO = "maintainAspectRatio";
public void setResponsive(boolean responsive);
public void setMaintainAspectRatio(boolean aspectRatio);
}