I have created an application using Serenity framework. I have completed basic functionality for CRUD using serenity. Based on my tables I need to have graphical representations, any charts like high charts, D3 charts or any . 1. How can I get data from the tables using serenity framework ? 2. How can I customise the data into graphical representations ?
相关问题
- Highlight parent path to the root
- Avoid overlapping of nodes in tree layout in d3.js
- d3.js moving average with previous and next data v
- How to make limits on the Y axis be the same using
- Issues using highcharts node export server from Cl
相关文章
- Mercurial Commit Charts / Graphs [closed]
- Change color of bars depending on value in Highcha
- D3.js: Stop transitions interrupting on mouseover?
- Adding text to the center of a D3 Donut Graph
- Changing Highcharts data series type dynamically
- rect collision detection d3js
- Pausing and resuming a transition
- D3 grouped bar chart: How to rotate the text of x
Finally I have found the answer for this. We can use sql queries as well as stored procedure to fetch data from DB. I have used stored procedure to get the data from db.
In repository page you can call stored procedure,
}
I have already defined MyRow as OrderRow like this using MyRow = Entities.OrderRow;.
You can call this method from your controller. You can pass the value to model and can use data for chart lik highcharts or d3 charts.
Hope this will help you.