diff --git a/components/tachart/demo/nogui/noguidemo.lpi b/components/tachart/demo/nogui/noguidemo.lpi index 0956927e11..dcc742ef95 100644 --- a/components/tachart/demo/nogui/noguidemo.lpi +++ b/components/tachart/demo/nogui/noguidemo.lpi @@ -11,7 +11,6 @@ - diff --git a/components/tachart/demo/nogui/noguidemo.lpr b/components/tachart/demo/nogui/noguidemo.lpr index 1ffda8b570..ab74a2ce3e 100644 --- a/components/tachart/demo/nogui/noguidemo.lpr +++ b/components/tachart/demo/nogui/noguidemo.lpr @@ -14,11 +14,13 @@ var img: TFPMemoryImage; c: TFPImageCanvas; -{$R *.res} - begin chart := TChart.Create(nil); - chart.LeftAxis.Marks.Visible := false; + chart.LeftAxis.Marks.LabelFont.Name := 'Arial'; + chart.LeftAxis.Marks.LabelFont.Size := 10; + chart.LeftAxis.Marks.Frame.Visible := true; + chart.LeftAxis.Marks.Frame.Style := psSolid; + chart.LeftAxis.Marks.Frame.FPColor := colBlack; chart.LeftAxis.Grid.FPColor := colDkGray; chart.BottomAxis.Marks.Visible := false; chart.BottomAxis.Grid.FPColor := colDkGray;