charts

What library use Roambi app iPhone to draw chart? [closed]

梦想与她 提交于 2020-01-25 20:50:06
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . Does anyone know what library is used in the iPhone application Roambi to draw charts? http://www.roambi.com/ 回答1: That looks like it uses the excellent Core Plot Framework. 回答2: I think it's not Core Plot. There are some charts in the app that don't conform to Core Plot. Maybe Roambi has started from Core Plot

ggplot bar chart of percentages over groups

风流意气都作罢 提交于 2020-01-25 19:55:46
问题 If I do the following command data(mtcars) ggplot(data=mtcars, aes(cyl))+ geom_bar(aes(fill=as.factor(gear), y = (..count..)/sum(..count..)), position="dodge") + scale_y_continuous(labels=percent) I will get However, what I really want to do is have each of the gear levels add up to 100%. So, gear is the subgroup I am looking at, and I want to know the distribution within each group. I don't want to use facets and I don't want to melt the data either. Is there a way to do this? 回答1: First of

AxisRenderer's labelRotation property doesn't do anything

拜拜、爱过 提交于 2020-01-25 12:33:39
问题 Despite setting the labelRotation property to 90 in this column chart, the axis labels are horizontal. Is there something additional I need to do? <mx:ColumnChart id="myChart" height="100%" width="100%" dataProvider="{myData}" showDataTips="true"> <mx:horizontalAxis> <mx:CategoryAxis id="h1" categoryField="code"/> </mx:horizontalAxis> <mx:horizontalAxisRenderers> <mx:AxisRenderer axis="{h1}" labelRotation="90" /> </mx:horizontalAxisRenderers> <mx:series> <mx:ColumnSet type="stacked"

Complex charts in Google Charts

╄→尐↘猪︶ㄣ 提交于 2020-01-25 12:25:27
问题 For a web application I'm working on, I need some pretty powerful graphing capabilities. I'm looking at using Google Charts for my needs. I'm wondering if Google Charts is capable of producing a graph to the complexity of the one in the image below: http://imageshack.us/photo/my-images/843/graphexample.png/ If not, are there any other graphing APIs I can use to create a chart to that complexity? Preferably in PHP. EDIT: Doesn't only have to be Google Charts. I'm looking for something that can

web and print charts

梦想的初衷 提交于 2020-01-25 11:31:45
问题 We have a requirement to display charts in an ASP.NET MVC app but the people using the app will need to be able to print the charts to paper and also save them as an image for use in presentations. They need to be high quality for the print/present versions and it seems to me that the web based charting tools are just that - optimised for web. The co i work for have historically used fusion charts but getting the quality out of that has eluded them. If we have to build a whole separate "out

web and print charts

回眸只為那壹抹淺笑 提交于 2020-01-25 11:31:14
问题 We have a requirement to display charts in an ASP.NET MVC app but the people using the app will need to be able to print the charts to paper and also save them as an image for use in presentations. They need to be high quality for the print/present versions and it seems to me that the web based charting tools are just that - optimised for web. The co i work for have historically used fusion charts but getting the quality out of that has eluded them. If we have to build a whole separate "out

Chart.js How to synchronize pan and zoom in multiple chats

爱⌒轻易说出口 提交于 2020-01-25 08:22:07
问题 I want to synchronize pan and zoom on multiple charts. I'm been using Chart.js with chartjs-plugin-zoom. charjs-plugin-zoom calls an event with the onZoom callback function. So, the values ​​at both ends of the X axis are obtained in this way with the callback function. onZoom: function () { var minVal = myChartA.getDatasetMeta(0).dataset._scale.chart.scales['x-axis-0']._table[0].time; var maxVal = myChartA.getDatasetMeta(0).dataset._scale.chart.scales['x-axis-0']._table[1].time; leftEnd =

Automating ScaleTransform for Rectangles in bar chart

若如初见. 提交于 2020-01-25 08:15:48
问题 I've this UserControl for the bar chart: <UserControl ... Name="uc"> <Grid> <Canvas> <Canvas.Resources> <Style TargetType="Line"> <Setter Property="X1" Value="0"/> <Setter Property="X2" Value="{Binding ActualWidth, ElementName=uc}"/> <Setter Property="StrokeThickness" Value="1"/> </Style> <Style TargetType="TextBlock"> <Setter Property="Canvas.Right" Value="0"/> </Style> </Canvas.Resources> <Line Y1="{Binding HighestPoint}" Y2="{Binding HighestPoint}" Canvas.Bottom="{Binding HighestPoint}"

stack bar google visualisation

雨燕双飞 提交于 2020-01-25 08:00:11
问题 i have this query here : select RSP,DATEDIFF(HOUR,date,GETDATE()) as 'age' from en_cours left join Base_Client on raison_sociale = Base_Client.Client or site_client = Base_Client.Client group by RSP,DATEDIFF(HOUR,date,GETDATE()),ticket_cp it' returne : A | 1 A | 2 A | 10 A | 15 B | 1 B | 4 B | 9 C | 10 C | 10 C | 13 is there any way to make this values above to show up in bar chart like the name "A" in one bar ,"B" in other bar , "C" in other bar group by the name , and the color like in the

SSRS: Range Bar Chart not displaying repeated status based on Date Range

心已入冬 提交于 2020-01-25 07:34:06
问题 I have a query that gives me the daily status of an item based on desired date range (parameters). This status will vary and can repeat. For example, it can chronologically be: Operational, Repair, Inspection, Operational, Inspection. As you can see Operational & Inspection are represented twice but at different times. While this is true, I cannot seem to get this represented graphically in a Range Bar Chart because it will only display one instance of each status (as shown in the picture).