//
// Controller.m
// MyCustomGraphView
//
// Created by Marco Rotatori on 02/02/10.
// Copyright 2010 Marco Rotatori. All rights reserved.
//
#import "Controller.h"
@implementation Controller
- (void)awakeFromNib {
float valori[14] = {2.0, 50.0, 13.0, 57.0, 23.0, 5.0, 100.0, 130.0, 34.0, 66.0, 6.45, 56.8, 123.0, 124.56};
[graphView setValues:valori length:14];
[graphView setNeedsDisplay:YES];
}
@end