Is it possible to get the distance between bars in a vaadin bar chart and in a parallel table, sync the table or treetable row heights to match?
Thanks!
Use this Gantt chart add-on for Vaadin.
Here's a demo that you can check its core capabilities.
And here is its source code.
Related
Is there a way to modify a Vaadin chart by moving a bar or a point from the chart itself? i.e. I have a bar chart with a certain value in one of the bars, I want to get a new value by dragging that bar to that new value.
There is something similar in this example, that is why I wonder if it is possible to extend this option to something like what I need.
Thanks!!!!
I assume that vaadin uses Highcharts if this is the case, maybe you can use plugins, if so I recommend:
http://www.highcharts.com/plugin-registry/single/3/Draggable%20Points
Source code in case you had to rewrite it:
https://rawgit.com/highslide-software/draggable-points/master/draggable-points.js
Regards.
I implemented kendo chart of Telerik and below is my code after applying updated values.
I would like to smoothly update only bar - like below LINK:
http://www.jqueryscript.net/demo/Dynamic-Animated-jQuery-Bar-Charts-Plugin-LiveGraph/demo/
My existing code to refresh graph is:
var chart = $("#divBarChart").data("kendoChart");
chart.options.series[0].data = globalSeriesValue
chart.refresh();
Please guide.
in Kendo - the Chart API exposes setDataSource() method. So when you say you want to refresh just the bars its actually nothing but providing a new data source to the chart. This way the chart is not redrawn rather just the points on the chart are repainted.
here is the documentation link:http://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/chart#methods-setDataSource
I have created a demo for you here: http://dojo.telerik.com/#kashyapa/Ekara
In my application I have to show data in grid like Asp.net gridControl.I want following features
Sorting on multiple column
Filtering on multiple column
Editable data, update data.
Resizing Column width.
Filtering between 2 dates
Have any example which meet my requirements.
Thanks
In iOS SDK UICollectionView can be used as Grid View. Using UICollectionView along with search bar sorting, filtering can be achieved.
Hope this helps.
Use UICollectionView or try to use some already made controls
https://www.cocoacontrols.com/tags/grid
Anyone had created a table view, not creating a chart from a table, but a pure table grid view using the highstock library?
I need to be able to navigate in time (table grid get updated dynamically, like chart does) using the navigator-scroll-bar and range selector. Basically just replace the chart by a pure HTML table grid of data.
It needs to be done with highstock chart, probably not highchart library, coz I am looking for time navigation component to update the table accordingly to new time range changes...
I guess this could be achieved with callbacks on the navigator and range selector?
You need to catch afterSetExtremes, get all visible serie's data from chart.series (between min/max values which limit range) and return table in defined i.e div.
How do I create a simple chart with a single horizontal bar. Xaxis is time and yaxis is one category named execution. I want to show a chart that shows a bar during the times when I have state executing and for states in between I want to display a blank in the same horizontal bar.
What you are looking for, I think, is a Gantt chart. Check out this example: http://jsfiddle.net/highcharts/KNGba/. It is a basic chart with just one element. Now check out this one: http://jsfiddle.net/highcharts/r6emu/. This shows you events during a time line.