iOS 4 SDK で Xcode 3.2.3 を使用しています。
グラフに値をプロットするための小さなアプリを準備しています。この目的のために、ECGraph ライブラリを使用しました。サンプル アプリをダウンロードし、目的に合わせて少し調整しました。グラフの X 軸に時間をプロットし、Y 軸に単純な int 値をプロットします。
私の問題: ECGraph でポイントを (日付、値) として作成するオプションを選択すると、X 軸のスケール、つまり時間単位が日付の場合にグラフが表示されます。時間単位を HOUR に変更すると、グラフは Y 軸のプロットが正しい Y 軸上の 1 本の線になりますが、X 軸のポイントは常に原点になります。
UIView ファイルのコードをここに追加しました。ECGraph lib のダウンロードで提供され、私のものに合わせて調整された、デモアプリから取得したものです。
DisplayView.m:
//
// DisplayView.m
// ECGraphic
//
// Created by ris on 10-4-17.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import "DisplayView.h"
#import "ECCommon.h"
#import "ECGraphPoint.h"
#import "ECGraphLine.h"
#import "ECGraphItem.h"
@implementation DisplayView
- (id)initWithFrame:(CGRect)frame {
if ((self = [super initWithFrame:frame])) {
// Initialization code
}
return self;
}
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
// Drawing code
CGContextRef _context = UIGraphicsGetCurrentContext();
ECGraph *graph = [[ECGraph alloc] initWithFrame:CGRectMake(10, 50, 300, 350) withContext:_context isPortrait:YES];
ECGraphPoint *point7 = [[ECGraphPoint alloc] init];
point7.yValue = 7;
point7.xDateValue = [ECCommon dOfS:@"08" withFormat:kDEFAULT_HOUR_FORMAT];
ECGraphPoint *point8 = [[ECGraphPoint alloc] init];
point8.yValue = 13;
point8.xDateValue = [ECCommon dOfS:@"09" withFormat:kDEFAULT_HOUR_FORMAT];
ECGraphPoint *point9 = [[ECGraphPoint alloc] init];
point9.yValue = 1;
point9.xDateValue = [ECCommon dOfS:@"10" withFormat:kDEFAULT_HOUR_FORMAT];
ECGraphPoint *point10 = [[ECGraphPoint alloc] init];
point10.yValue = 3;
point10.xDateValue = [ECCommon dOfS:@"11" withFormat:kDEFAULT_HOUR_FORMAT];
//NSArray *pts3 = [[NSArray alloc] initWithObjects:point7,point8,point9, point10, nil];
NSArray *pts3 = [[NSArray alloc] initWithObjects:point7,point8, nil];
ECGraphLine *line3 = [[ECGraphLine alloc] init];
line3.isXDate = YES;
line3.points = pts3;
NSArray *lines = [[NSArray alloc] initWithObjects:line3,nil];
[graph setXaxisTitle:@"Hours"];
[graph setYaxisTitle:@"Energy consumed in Watts"];
[graph setGraphicTitle:@"Weekly consumption of your device"];
[graph setXaxisDateFormat:kDEFAULT_HOUR_FORMAT];
[graph setDelegate:self];
[graph setBackgroundColor:[UIColor colorWithRed:220/255.0 green:220/255.0 blue:220/255.0 alpha:1]];
[graph setPointType:ECGraphPointTypeCircle];
[graph drawCurveWithLines:lines lineWidth:2 color:[UIColor blackColor]];
}
- (void)dealloc {
[super dealloc];
}
@end