We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi everyone,
I need mount a graph with data of the a API. I'm using https://github.com/statnett/vue-plotly My code is:
<vue-plotly :data="data" :layout="layout" :options="options" /> <script> import axios from "axios"; import VuePlotly from "@statnett/vue-plotly"; export default { components: { VuePlotly }, data() { return { fields: [], data: [{ x: [], y: [] }], layout: {}, options: {}, responsive: true }; }, mounted() { var url = "http://www.mocky.io/v2/5d77aa2f3200005b00923f71"; axios.get(url).then(r => { this.fields = r.data.fields; }); } }; </script>
How make this?
The text was updated successfully, but these errors were encountered:
<vue-plotly> references data, layout and options. There is no reference to fields so it is not surprising it does nothing
<vue-plotly>
Sorry, something went wrong.
No branches or pull requests
Hi everyone,
I need mount a graph with data of the a API. I'm using https://github.com/statnett/vue-plotly
My code is:
How make this?
The text was updated successfully, but these errors were encountered: