You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// In addition to the regular options we specify responsive option overrides// that will override the default configutation based on the matching media queries.varresponsiveOptions=[['screen and (min-width: 641px) and (max-width: 1024px)',{showPoint: false,axisX: {labelInterpolationFnc: function(value){// Will return Mon, Tue, Wed etc. on medium screensreturnvalue.slice(0,3);}}}],['screen and (max-width: 640px)',{showLine: false,axisX: {labelInterpolationFnc: function(value){// Will return M, T, W etc. on small screensreturnvalue[0];}}}]];
The text was updated successfully, but these errors were encountered:
Is there a way to inject in the current js something like
labelInterpolationFnc
for chartist?https://gionkunz.github.io/chartist-js/api-documentation.html:
The text was updated successfully, but these errors were encountered: