vue-chartist
vue-chartist copied to clipboard
chartist in options not defined
hey im trying to use Chartist in my options like the documentation says on their website but im getting chartist is not defined. What am I missing?
axisX: {
type: Chartist.FixedScaleAxis,
}
The problem is that the component does not expose FixedScaleAxis constant,you are just importing the component, a workarround for this is importing chartist and use the constant instead
ie:
import VueChartist from 'v-chartist'
import * as c from 'chartist'
....
lineOptions: {
axisX: {
type: c.FixedScaleAxis,
....other props....
},
},
....