Skip to content

Commit

Permalink
Merge pull request #3528 from yangasahi/demo_title_fix
Browse files Browse the repository at this point in the history
fix the error title for demo
  • Loading branch information
liuxuan30 committed Jul 11, 2018
2 parents fafd58c + 5d9860f commit 61eb6e6
Show file tree
Hide file tree
Showing 16 changed files with 17 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ - (void)viewDidLoad
{
[super viewDidLoad];

self.title = @"Half Pie Bar Chart";
self.title = @"Half Pie Chart";

self.options = @[
@{@"key": @"toggleValues", @"label": @"Toggle Y-Values"},
Expand Down
2 changes: 1 addition & 1 deletion ChartsDemo-iOS/Objective-C/Demos/PieChartViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ - (void)viewDidLoad
{
[super viewDidLoad];

self.title = @"Pie Bar Chart";
self.title = @"Pie Chart";

self.options = @[
@{@"key": @"toggleValues", @"label": @"Toggle Y-Values"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ - (void)viewDidLoad
{
[super viewDidLoad];

self.title = @"Pie Bar Chart";
self.title = @"Pie Poly Line Chart";

self.options = @[
@{@"key": @"toggleValues", @"label": @"Toggle Y-Values"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ - (void)viewDidLoad
{
[super viewDidLoad];

self.title = @"Bar Chart";
self.title = @"Positive/Negative Bar Chart";

self.options = @[
@{@"key": @"toggleValues", @"label": @"Toggle Values"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ - (void)viewDidLoad

self.activities = @[ @"Burger", @"Steak", @"Salad", @"Pasta", @"Pizza" ];

self.title = @"Radar Bar Chart";
self.title = @"Radar Chart";

self.options = @[
@{@"key": @"toggleValues", @"label": @"Toggle Values"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ - (void)viewDidLoad
{
[super viewDidLoad];

self.title = @"Scatter Bar Chart";
self.title = @"Scatter Chart";

self.options = @[
@{@"key": @"toggleValues", @"label": @"Toggle Values"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ class AnotherBarChartViewController: DemoBaseViewController {
super.viewDidLoad()

// Do any additional setup after loading the view.
self.title = "Another Bar Chart"

self.options = [.toggleValues,
.toggleHighlight,
.animateX,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class CandleStickChartViewController: DemoBaseViewController {
super.viewDidLoad()

// Do any additional setup after loading the view.
self.title = "Bubble Chart"
self.title = "Candle Stick Chart"
self.options = [.toggleValues,
.toggleIcons,
.toggleHighlight,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class HalfPieChartViewController: DemoBaseViewController {
super.viewDidLoad()

// Do any additional setup after loading the view.
self.title = "Half Pie Bar Chart"
self.title = "Half Pie Chart"

self.options = [.toggleValues,
.toggleXValues,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class LineChartTimeViewController: DemoBaseViewController {
super.viewDidLoad()

// Do any additional setup after loading the view.
self.title = "Line Chart 2"
self.title = "Time Line Chart"
self.options = [.toggleValues,
.toggleFilled,
.toggleCircles,
Expand Down
2 changes: 1 addition & 1 deletion ChartsDemo-iOS/Swift/Demos/PieChartViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class PieChartViewController: DemoBaseViewController {
super.viewDidLoad()

// Do any additional setup after loading the view.
self.title = "Half Pie Bar Chart"
self.title = "Pie Chart"

self.options = [.toggleValues,
.toggleXValues,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class PiePolylineChartViewController: DemoBaseViewController {
super.viewDidLoad()

// Do any additional setup after loading the view.
self.title = "Pie Bar Chart"
self.title = "Pie Poly Line Chart"

self.options = [.toggleValues,
.toggleXValues,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class PositiveNegativeBarChartViewController: DemoBaseViewController {
super.viewDidLoad()

// Do any additional setup after loading the view.
self.title = "Bar Chart"
self.title = "Positive/Negative Bar Chart"
self.options = [.toggleValues,
.toggleHighlight,
.animateX,
Expand Down
2 changes: 1 addition & 1 deletion ChartsDemo-iOS/Swift/Demos/RadarChartViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class RadarChartViewController: DemoBaseViewController {
super.viewDidLoad()

// Do any additional setup after loading the view.
self.title = "Radar Bar Chart"
self.title = "Radar Chart"
self.options = [.toggleValues,
.toggleHighlight,
.toggleHighlightCircle,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class ScatterChartViewController: DemoBaseViewController {
super.viewDidLoad()

// Do any additional setup after loading the view.
self.title = "Scatter Bar Chart"
self.title = "Scatter Chart"
self.options = [.toggleValues,
.toggleHighlight,
.animateX,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class SinusBarChartViewController: DemoBaseViewController {
super.viewDidLoad()

// Do any additional setup after loading the view.
self.title = "Line Chart 2"
self.title = "Sinus Bar Chart"
self.options = [.toggleValues,
.toggleHighlight,
.animateX,
Expand Down

0 comments on commit 61eb6e6

Please sign in to comment.