1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352
|
{ Unit to plot a function on a canvas
Copyright (C) 2008 Michael Van Canneyt Michael@freepascal.org
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version with the following modification:
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent modules,and
to copy and distribute the resulting executable under terms of your choice,
provided that you also meet, for each linked independent module, the terms
and conditions of the license of that module. An independent module is a
module which is not derived from or based on this library. If you modify
this library, you may extend this exception to your version of the library,
but you are not obligated to do so. If you do not wish to do so, delete this
exception statement from your version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
for more details.
You should have received a copy of the GNU Library General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA.
}
unit plotpanel;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Controls, graphics, extctrls, ldocktree;
Const
DefLeftMargin = 60;
DefRightMargin = 20;
DefTopMargin = 40;
DefBottomMargin = DefTopMargin;
DefXTickSize = 5;
DefYTickSize = DefXTickSize;
DefXTicks = 10;
DefYTicks = DefXTicks;
DefAxisColor = clGreen;
DefTickColor = DefAxisColor;
DefLegendInterval = 2;
DefInterval = 100;
DefCaptionAlignment = taRightJustify;
DefGridInterval = 1;
DefGridColor = clSilver;
DefPlotColor = clRed;
DefLineWidth = 1;
Type
TPlotFloat = Double;
TCanvasPlotter = Class;
{ TPlotCaption }
TPlotCaption = Class(TPersistent)
private
FAlignment: TAlignment;
FFont: TFont;
FOnChange: TNotifyEvent;
FTitle: String;
procedure SetAlignment(const AValue: TAlignment);
procedure SetFont(const AValue: TFont);
procedure SetTitle(const AValue: String);
Protected
Procedure Changed;
Property OnChange : TNotifyEvent Read FOnChange Write FOnChange;
Public
Constructor Create;
Destructor Destroy; override;
Published
Property Title : String Read FTitle Write SetTitle;
Property Font : TFont Read FFont Write SetFont;
Property Alignment : TAlignment Read FAlignment Write SetAlignment;
end;
{ TPlotAxis }
TTickMode = (tmCount,tmDelta);
TPlotAxis = Class(TPersistent)
private
FDrawZero: Boolean;
FGridColor: TColor;
FGridLinewidth: Integer;
FGridInterval: Integer;
FInterval: TPlotFloat;
FCaption: TPlotCaption;
FLegendInterval: Integer;
FLegendFormat: String;
FOrigin: TPlotFloat;
FPlotter : TCanvasPlotter;
FColor: TColor;
FLinewidth: Integer;
FTickColor: TColor;
FTickFont: TFont;
FTickMode: TTickMode;
FTicks: Integer;
FTickSize: integer;
FTickLinewidth: Integer;
FZeroLinewidth: Integer;
procedure SetAxisColor(const AValue: TColor);
procedure SetLinewidth(const AValue: Integer);
procedure SetDrawZero(const AValue: Boolean);
procedure SetInterval(const AValue: TPlotFloat);
procedure SetCaption(const AValue: TPlotCaption);
procedure SetGridColor(const AValue: TColor);
procedure SetGridInterval(const AValue: Integer);
procedure SetGridLinewidth(const AValue: Integer);
procedure SetLegendInterval(const AValue: Integer);
procedure SetLegendFormat(const AValue: String);
procedure SetOrigin(const AValue: TPlotFloat);
procedure SetTickColor(const AValue: TColor);
procedure SetTickFont(const AValue: TFont);
procedure SetTickLinewidth(const AValue: Integer);
procedure SetTickMode(const AValue: TTickMode);
procedure SetTicks(const AValue: Integer);
procedure SetTickSize(const AValue: integer);
procedure SetZeroLinewidth(const AValue: Integer);
Protected
Procedure DoCaptionChange(Sender : TObject);
procedure Changed;
Property Plotter : TCanvasPlotter read FPlotter;
Function TickDelta : Double;
Function ValueDelta : TPlotFloat;
Function GetDimension : Integer;virtual; abstract;
Function Margin1 : Integer;virtual; abstract;
Function Margin2 : Integer;virtual; abstract;
Public
Constructor Create;virtual;
Destructor Destroy; override;
Published
// Linewidth of axis line
Property LineWidth: Integer read FLineWidth write SetLineWidth default DefLineWidth;
// Graph color
Property Color : TColor Read FColor Write SetAxisColor default defAxisColor;
// Color of ticks on axis
Property TickColor : TColor Read FTickColor Write SetTickColor default defAxisColor;
// Number or distance (in pixels) between ticks on axis
Property Ticks : Integer Read FTicks Write SetTicks;
// Length of ticks on axis
Property TickSize : integer Read FTickSize Write SetTickSize;
// Linewidth of ticks on axis
Property TickLinewidth: Integer read FTickLinewidth write SetTickLinewidth default DefLinewidth;
// Ticks is number of ticks or distance (in pixels) between ticks ?
Property TickMode : TTickMode Read FTickMode Write SetTickMode;
// Font for tick legend
Property TickFont : TFont Read FTickFont Write SetTickFont;
// Caption of axis
Property Caption : TPlotCaption Read FCaption Write SetCaption;
// Draw zero axis if interval if interval starts at negative values ?
Property DrawZero : Boolean Read FDrawZero Write SetDrawZero;
// Value in X/Y of origin of the axis. X/Y value starts here.
Property Origin : TPlotFloat Read FOrigin Write SetOrigin;
// Interval to cover in X/Y. X/Y run in [Origin,Origin+Interval]
Property Interval : TPlotFloat Read FInterval Write SetInterval;
// Write value in X/Y of ticks every LegendInterval ticks. 0 is no legend.
Property LegendInterval : Integer Read FLegendInterval Write SetLegendInterval default DeflegendInterval;
// Format for legend (formatfloat);
Property LegendFormat : String Read FLegendFormat write SetLegendFormat;
// Interval (in ticks) of grid. 0 means no grid.
Property GridInterval : Integer Read FGridInterval Write SetGridInterval default DefGridInterval;
// Grid color.
Property GridColor : TColor Read FGridColor Write SetGridColor default DefGridColor;
// Grid linewidth
Property GridLinewidth: Integer Read FGridLinewidth Write SetGridLinewidth default DefLineWidth;
// Width of zero lines
Property ZeroLineWidth: Integer read FZeroLineWidth Write SetZeroLineWidth default DefLineWidth;
end;
{ TPlotXAxis }
TPlotXAxis = Class(TPlotAxis)
private
FLeftMargin: Integer;
FRightMargin: Integer;
procedure SetLeftMargin(const AValue: Integer);
procedure SetRightMargin(const AValue: Integer);
Protected
Function GetDimension : Integer;override;
Function Margin1 : Integer;override;
Function Margin2 : Integer;override;
Public
Constructor Create; override;
Published
// Start of X origin in pixels.
Property LeftMargin : Integer Read FLeftMargin Write SetLeftMargin;
// End of X range from right edge in pixels.
Property RightMargin : Integer Read FRightMargin Write SetRightMargin;
Property Ticks Default DefXTicks;
Property TickSize Default DefXTickSize;
end;
{ TPlotYAxis }
TPlotYAxis = Class(TPlotAxis)
private
FBottomMargin: Integer;
FTopMargin: Integer;
procedure SetBottomMargin(const AValue: Integer);
procedure SetTopMargin(const AValue: Integer);
Protected
Function GetDimension : Integer;override;
Function Margin1 : Integer;override;
Function Margin2 : Integer;override;
Public
Constructor Create; override;
Published
// End of Y range from top edge in pixels.
Property TopMargin : Integer Read FTopMargin Write SetTopMargin;
// Start of Y range (Y origin) from bottom edge in pixels.
Property BottomMargin : Integer Read FBottomMargin Write SetBottomMargin;
end;
{ TCanvasPlotter }
TCanvasPlotter = Class(TComponent)
private
FActive: Boolean;
FBkColor: TColor;
FBoundsRect: TRect;
FCaption: TPlotCaption;
FColor: TColor;
FPlotColor: TColor;
FPlotLineWidth: Integer;
FXaxis: TPlotXAxis;
FYaxis: TPlotYAxis;
FCanvas: TCanvas;
FBitmap : TBitmap;
FLastLegend : String;
FLastFont : TFont;
procedure DrawCaption(ACanvas: TCanvas);
procedure SetActive(const AValue: Boolean);
procedure SetBkColor(const AValue: TColor);
procedure SetBoundsRect(const AValue: TRect);
procedure SetCanvas(const AValue: TCanvas);
procedure SetCaption(const AValue: TPlotCaption);
procedure SetColor(const AValue: TColor);
procedure SetPlotColor(const AValue: TColor);
procedure SetPlotLineWidth(const AValue: Integer);
procedure SetXAxis(const AValue: TPlotXAxis);
procedure SetYAxis(const AValue: TPlotYAxis);
Protected
function GetRotatedLegend(ACanvas : TCanvas): TBitmap;
Procedure DrawBackground(ACanvas: TCanvas);
procedure DrawHAxis(ACanvas: TCanvas; Const AHAxis,AVAxis : TPlotAxis); virtual;
procedure DrawVAxis(ACanvas: TCanvas; Const AVAxis,AHAxis : TPlotAxis); virtual;
Procedure PlotFunction(ACanvas : TCanvas); virtual;
Function GetHDimension : Integer; virtual;
Function GetVDimension : Integer; virtual;
Function CalcFunction(X : TPlotFloat) : TPlotFloat; virtual;
Procedure Changed; virtual;
Public
Constructor Create(AOwner : TComponent); override;
Destructor Destroy; override;
Procedure Draw;
Property BoundsRect: TRect Read FBoundsRect Write SetBoundsRect;
Property Canvas : TCanvas Read FCanvas Write SetCanvas;
Property XAxis : TPlotXAxis Read FXaxis Write SetXAxis;
Property YAxis : TPlotYAxis Read FYaxis Write SetYAxis;
Property BkColor : TColor Read FBkColor Write SetBkColor;
Property Color: TColor Read FColor write SetColor;
Property PlotColor : TColor Read FPlotColor Write SetPlotColor;
Property PlotLinewidth: Integer read FPlotLineWidth Write SetPlotLineWidth;
Property Active : Boolean Read FActive Write SetActive;
Property Caption : TPlotCaption Read FCaption Write SetCaption;
end;
{ TControlPlotter }
TControlPlotter = Class(TCanvasPlotter)
Protected
FControl : TControl;
Procedure Changed; override;
Public
Constructor Create(AOwner : TComponent); override;
end;
{ TEventControlPlotter }
TOnCalcPlotEvent = Procedure(Const X : TPlotFloat; Out Y : TPlotFloat) of Object;
TEventControlPlotter = Class(TCanvasPlotter)
private
FOnCalcPlot : TOnCalcPlotEvent;
procedure SetOnCalcPlot(const AValue: TOnCalcPlotEvent);
Protected
Function CalcFunction(X : TPlotFloat) : TPlotFloat; override;
Public
Property OnCalcPlot : TOnCalcPlotEvent Read FOnCalcPlot Write SetOnCalcPlot;
end;
{ TCustomPlotFunctionPanel }
TCustomPlotFunctionPanel = Class(TGraphicControl)// (CustomPanel)
private
FPlotter: TCanvasPlotter;
function GetActive: Boolean;
function GetBkColor: TColor;
function GetCaption: TPlotCaption;
function GetColor: TColor;
function GetPlotColor: TColor;
function GetPlotLineWidth: Integer;
function GetXaxis: TPlotXAxis;
function GetYaxis: TPlotYAxis;
procedure SetActive(const AValue: Boolean);
procedure SetBkColor(const AValue: TColor);
procedure SetCaption(const AValue: TPlotCaption);
procedure SetPlotColor(const AValue: TColor);
procedure SetPlotLineWidth(const AValue: Integer);
procedure SetXAxis(const AValue: TPlotXAxis);
procedure SetYAxis(const AValue: TPlotYAxis);
Protected
Function CreatePlotter : TCanvasPlotter; virtual;
procedure Paint; override;
Property Plotter : TCanvasPlotter Read FPlotter;
procedure SetColor(Value: TColor); override;
Public
Constructor Create(AOwner : TComponent); override;
Destructor Destroy; override;
Property Align;
Property Active : Boolean Read GetActive Write SetActive;
Property BkColor: TColor read GetBkColor write SetBkColor default clDefault;
Property Caption : TPlotCaption Read GetCaption Write SetCaption;
Property Color: TColor read GetColor write SetColor default clDefault;
Property PlotColor : TColor Read GetPlotColor Write SetPlotColor;
Property PlotLineWidth: Integer read GetPlotLinewidth Write SetPlotLinewidth default DefLinewidth;
Property XAxis : TPlotXAxis Read GetXaxis Write SetXAxis;
Property YAxis : TPlotYAxis Read GetYaxis Write SetYAxis;
end;
{ TPlotFunctionPanel }
TPlotFunctionPanel = Class(TCustomPlotFunctionPanel)
private
function GetOnCalcPlot: TOnCalcPlotEvent;
procedure SetOnCalcPlot(AValue: TOnCalcPlotEvent);
Protected
Function CreatePlotter : TCanvasPlotter; override;
Published
Property OnCalcPlot : TOnCalcPlotEvent Read GetOnCalcPlot Write SetOnCalcPlot;
Property Align;
Property Anchors;
Property Active;
Property BkColor;
Property BorderSpacing;
Property Color;
Property PlotColor;
property PlotLinewidth;
Property XAxis;
Property YAxis;
end;
EPlotPanel = Class(Exception);
implementation
uses
lcltype, // Rotated font support
lclintf,
graphtype,
intfgraphics,
fpimage,
interfacebase; // To detect widget set.
resourcestring
SerrInvalidInterval = 'Invalid interval. Interval must be a positive number: %f';
// DefXCaption = 'X values';
// DefYCaption = 'Y values';
function Max(a, b: Integer): Integer;
begin
if a > b then Result := a else Result := b;
end;
{ TCustomPlotFunctionPanel }
procedure TCustomPlotFunctionPanel.SetXAxis(const AValue: TPlotXAxis);
begin
PLotter.XAxis.assign(AValue);
end;
function TCustomPlotFunctionPanel.GetActive: Boolean;
begin
Result:=FPlotter.Active;
end;
function TCustomPlotFunctionPanel.GetBkColor: TColor;
begin
Result := FPlotter.BkColor;
end;
function TCustomPlotFunctionPanel.GetCaption: TPlotCaption;
begin
Result:=FPlotter.Caption;
end;
function TCustomPlotFunctionPanel.GetColor: TColor;
begin
Result := FPlotter.Color;
end;
function TCustomPlotFunctionPanel.GetPlotColor: TColor;
begin
Result:=FPlotter.PlotColor;
end;
function TCustomPlotFunctionPanel.GetPlotLinewidth: Integer;
begin
Result := FPlotter.PlotLinewidth;
end;
function TCustomPlotFunctionPanel.GetXaxis: TPlotXAxis;
begin
Result:=FPlotter.XAxis;
end;
function TCustomPlotFunctionPanel.GetYaxis: TPlotYAxis;
begin
Result:=FPlotter.YAxis;
end;
procedure TCustomPlotFunctionPanel.SetActive(const AValue: Boolean);
begin
FPlotter.Active:=AValue;
end;
procedure TCustomPlotFunctionPanel.SetBkColor(const AValue: TColor);
begin
FPlotter.BkColor := AValue;
end;
procedure TCustomPlotFunctionPanel.SetCaption(const AValue: TPlotCaption);
begin
FPlotter.Caption.Assign(AValue);
end;
procedure TCustomPlotFunctionPanel.SetPlotColor(const AValue: TColor);
begin
FPlotter.PlotColor:=AValue;
end;
procedure TCustomPlotFunctionPanel.SetPlotLineWidth(const AValue: Integer);
begin
FPlotter.PlotLinewidth := Max(1, AValue);
end;
procedure TCustomPlotFunctionPanel.SetYAxis(const AValue: TPlotYAxis);
begin
FPlotter.Yaxis.Assign(AValue);
end;
procedure TCustomPlotFunctionPanel.Paint;
begin
FPlotter.FBoundsRect:=Self.ClientRect;
FPlotter.Draw;
end;
procedure TCustomPlotFunctionPanel.SetColor(Value: TColor);
begin
inherited SetColor(Value);
If Assigned(FPlotter) then
FPLotter.Color:=Value;
end;
constructor TCustomPlotFunctionPanel.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Width:=320;
Height:=200;
FPlotter:=CreatePlotter;
FPlotter.FCanvas:=Self.Canvas;
end;
destructor TCustomPlotFunctionPanel.Destroy;
begin
inherited Destroy;
end;
function TCustomPlotFunctionPanel.CreatePlotter: TCanvasPlotter;
begin
Result:=TControlPlotter.Create(Self);
end;
{ TPlotAxis }
procedure TPlotAxis.SetAxisColor(const AValue: TColor);
begin
if FColor=AValue then exit;
FColor:=AValue;
Changed;
end;
procedure TPlotAxis.SetLinewidth(const AValue: Integer);
begin
if FLinewidth = AValue then exit;
FLinewidth := Max(1, AValue);
Changed;
end;
procedure TPlotAxis.SetDrawZero(const AValue: Boolean);
begin
if FDrawZero=AValue then exit;
FDrawZero:=AValue;
Changed;
end;
procedure TPlotAxis.SetInterval(const AValue: TPlotFloat);
begin
if FInterval=AValue then exit;
If FInterval<=0 then
Raise EPlotPanel.CreateFmt(SerrInvalidInterval,[AValue]);
FInterval:=AValue;
Changed;
end;
procedure TPlotAxis.SetCaption(const AValue: TPlotCaption);
begin
if FCaption=AValue then exit;
FCaption.Assign(AValue);
Changed;
end;
procedure TPlotAxis.SetGridColor(const AValue: TColor);
begin
if FGridColor=AValue then exit;
FGridColor := AValue;
Changed;
end;
procedure TPlotAxis.SetGridInterval(const AValue: Integer);
begin
if FGridInterval = AValue then exit;
FGridInterval := AValue;
Changed;
end;
procedure TPlotAxis.SetGridLinewidth(const AValue: Integer);
begin
if FGridLinewidth = AValue then exit;
FGridLinewidth := Max(1, AValue);
Changed;
end;
procedure TPlotAxis.SetLegendInterval(const AValue: Integer);
begin
if FLegendInterval=AValue then exit;
FLegendInterval:=Max(0, AValue);
Changed;
end;
procedure TPlotAxis.SetLegendFormat(const AValue: String);
begin
if FLegendFormat=AValue then exit;
FLegendFormat:=AValue;
Changed;
end;
procedure TPlotAxis.SetOrigin(const AValue: TPlotFloat);
begin
if FOrigin=AValue then exit;
FOrigin:=AValue;
Changed;
end;
procedure TPlotAxis.SetTickColor(const AValue: TColor);
begin
if FTickColor=AValue then exit;
FTickColor:=AValue;
Changed;
end;
procedure TPlotAxis.SetTickFont(const AValue: TFont);
begin
if FTickFont=AValue then exit;
FTickFont:=AValue;
Changed;
end;
procedure TPlotAxis.SetTickLinewidth(const AValue: Integer);
begin
if FTickLinewidth = AValue then exit;
FTickLinewidth := Max(1, AValue);
Changed;
end;
procedure TPlotAxis.SetTickMode(const AValue: TTickMode);
begin
if FTickMode=AValue then exit;
If Not Assigned(FPlotter) then
FTicks:=1
else
FTicks:=GetDimension div FTicks;
FTickMode:=AValue;
Changed;
end;
procedure TPlotAxis.SetTicks(const AValue: Integer);
begin
if FTicks=AValue then exit;
FTicks:=Max(1, AValue);
Changed;
end;
procedure TPlotAxis.SetTickSize(const AValue: integer);
begin
if FTickSize=AValue then exit;
FTickSize:=Max(1, AValue);
Changed;
end;
procedure TPlotAxis.SetZeroLinewidth(const AValue: Integer);
begin
if FZeroLinewidth = AValue then exit;
FZeroLinewidth := Max(1, AValue);
Changed;
end;
procedure TPlotAxis.DoCaptionChange(Sender: TObject);
begin
Changed;
end;
procedure TPlotAxis.Changed;
begin
If Assigned(FPlotter) then
FPlotter.Changed;
end;
function TPlotAxis.TickDelta: Double;
begin
Case FTickMode of
tmCount : Result:=GetDimension / (Ticks);
tmDelta : Result:=Ticks;
end;
end;
function TPlotAxis.ValueDelta: TPlotFloat;
begin
Case FTickMode of
tmCount : Result:=Interval / Ticks;
tmDelta : Result:=Interval / TickDelta;
end;
end;
constructor TPlotAxis.Create;
begin
inherited Create;
FCaption:=TPlotCaption.Create;
FCaption.FOnChange:=@DoCaptionChange;
FCaption.Font.OnChange:= @DoCaptionChange;
FColor:=DefAxisColor;
FLineWidth:= DefLineWidth;
FTickFont:=TFont.Create;
FTickFont.OnChange := @DoCaptionChange;
FTickLinewidth := DefLinewidth;
FLegendInterval:=DefLegendInterval;
FInterval:=DefInterval;
FTickColor:=DefTickColor;
FGridColor:=DefGridColor;
FGridLinewidth:=DefLineWidth;
FGridInterval:=DefGridInterval;
FZeroLinewidth:=DefLinewidth;
end;
destructor TPlotAxis.Destroy;
begin
FreeAndNil(FTickFont);
FreeAndNil(FCaption);
inherited Destroy;
end;
{ TPlotXAxis }
procedure TPlotXAxis.SetLeftMargin(const AValue: Integer);
begin
if FLeftMargin=AValue then exit;
FLeftMargin:=AValue;
Changed;
end;
procedure TPlotXAxis.SetRightMargin(const AValue: Integer);
begin
if FRightMargin=AValue then exit;
FRightMargin:=AValue;
Changed;
end;
function TPlotXAxis.GetDimension: Integer;
begin
Result:=FPlotter.GetHDimension-Leftmargin-RightMargin;
If Result<0 then
Result:=0;
end;
function TPlotXAxis.Margin1: Integer;
begin
Result:=FLeftmargin;
end;
function TPlotXAxis.Margin2: Integer;
begin
Result:=FRightMargin;
end;
constructor TPlotXAxis.Create;
begin
inherited Create;
FLeftMargin:=DefLeftMargin;
FRightMargin:=DefRightMargin;
FTicks:=DefXTicks;
FTickSize:=DefXTickSize;
// FCaption.Title:=DefXCaption;
end;
{ TPlotYAxis }
procedure TPlotYAxis.SetBottomMargin(const AValue: Integer);
begin
if FBottomMargin=AValue then exit;
FBottomMargin:=AValue;
Changed;
end;
procedure TPlotYAxis.SetTopMargin(const AValue: Integer);
begin
if FTopMargin=AValue then exit;
FTopMargin:=AValue;
Changed;
end;
function TPlotYAxis.GetDimension: Integer;
begin
Result:=FPLotter.GetVDimension-TopMargin-BottomMargin;
end;
function TPlotYAxis.Margin1: Integer;
begin
Result:=FBottomMargin;
end;
function TPlotYAxis.Margin2: Integer;
begin
Result:=FTopMargin;
end;
constructor TPlotYAxis.Create;
begin
inherited Create;
FTopMargin:=DefTopMargin;
FBottomMargin:=DefBottomMargin;
FTicks:=DefYTicks;
FTickSize:=DefYTickSize;
// FCaption.FTitle:=DefYCaption;
end;
{ TCanvasPlotter }
procedure TCanvasPlotter.SetActive(const AValue: Boolean);
begin
if FActive=AValue then exit;
FActive:=AValue;
Changed;
end;
procedure TCanvasPlotter.SetBkColor(const AValue: TColor);
begin
if FBkColor=AValue then exit;
FBkColor:=AValue;
Changed;
end;
procedure TCanvasPlotter.SetBoundsRect(const AValue: TRect);
begin
if (FBoundsRect.Left=AValue.left) and
(FBoundsRect.Top=AValue.Top) and
(FBoundsRect.Bottom=AValue.Bottom) and
(FBoundsRect.RIght=AValue.Right) then exit;
FBoundsRect:=AValue;
Changed;
end;
procedure TCanvasPlotter.SetCanvas(const AValue: TCanvas);
begin
if FCanvas=AValue then exit;
FCanvas:=AValue;
Changed;
end;
procedure TCanvasPlotter.SetCaption(const AValue: TPlotCaption);
begin
if FCaption=AValue then exit;
FCaption.Assign(AValue);
Changed;
end;
procedure TCanvasPlotter.SetColor(const AValue: TColor);
begin
if FColor = AValue then exit;
FColor := AValue;
Changed;
end;
procedure TCanvasPlotter.SetPlotColor(const AValue: TColor);
begin
If (FPlotColor=AValue) then Exit;
FPlotColor:=AValue;
Changed;
end;
procedure TCanvasPlotter.SetPlotLineWidth(const AValue: Integer);
begin
if (FPlotLinewidth=AValue) then exit;
FPlotLineWidth := AValue;
Changed;
end;
procedure TCanvasPlotter.SetXAxis(const AValue: TPlotXAxis);
begin
if FXaxis=AValue then exit;
FXaxis.Assign(AValue);
Changed;
end;
procedure TCanvasPlotter.SetYAxis(const AValue: TPlotYAxis);
begin
if FYaxis=AValue then exit;
FYaxis.Assign(AValue);
Changed;
end;
function TCanvasPlotter.CalcFunction(X: TPlotFloat): TPlotFloat;
begin
Result:=0;
end;
procedure TCanvasPlotter.Changed;
begin
Draw;
end;
constructor TCanvasPlotter.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FXAxis:=TPlotXAxis.Create;
FXAxis.FPlotter:=Self;
FYAxis:=TPlotYAxis.Create;
FYAxis.FPlotter:=Self;
FPlotColor:=DefPlotColor;
FPlotLinewidth:=DefLinewidth;
FCaption:=TPlotCaption.Create;
FBkColor := clDefault;
FColor := clDefault;
end;
destructor TCanvasPlotter.Destroy;
begin
inherited Destroy;
FreeAndNil(FXAxis);
FreeAndNil(FYAxis);
FreeAndNil(FCaption);
FreeAndNil(FBitmap);
FreeAndNil(FLastFont);
end;
procedure TCanvasPlotter.Draw;
begin
If Not Assigned(FCanvas) then
Exit;
DrawBackGround(FCanvas);
If Active then
PlotFunction(FCanvas);
If (FCaption.Title<>'') then
DrawCaption(FCanvas);
end;
procedure TCanvasPlotter.DrawCaption(ACanvas: TCanvas);
Var
CW,CH,CX : Integer;
begin
CW:=ACanvas.TextWidth(FCaption.Title);
CH:=ACanvas.TextHeight(FCaption.Title);
Case Caption.Alignment of
taLeftJustify : CX:=BoundsRect.Left+FXAxis.LeftMargin;
taRightJustify : CX:=BoundsRect.Right-CW-FXAxis.RightMargin;
taCenter : CX:=BoundsRect.Left+FXAxis.LeftMargin+(GetHDimension-CW-FXAxis.RightMargin-FXAxis.LeftMargin) div 2;
end;
ACanvas.Font:=FCaption.Font;
CH:=BoundsRect.Top+(FYAxis.TopMargin-CH) div 2;
ACanvas.TextOut(CX,CH,FCaption.Title);
end;
procedure TCanvasPlotter.DrawBackground(ACanvas: TCanvas);
begin
// Color paints the entire diagram background
ACanvas.Brush.Color:=Color;
ACanvas.Brush.Style:=bsSolid;
ACanvas.FillRect(BoundsRect);
// BkColor paints the background spanned by the axes
ACanvas.Brush.Color := BkColor;
ACanvas.FillRect(
FXAxis.LeftMargin,
FYAxis.TopMargin,
BoundsRect.Width-FXAxis.RightMargin,
BoundsRect.Height-FYAxis.BottomMargin
);
DrawHAxis(ACanvas,FXAxis,FYAxis);
DrawVAxis(ACanvas,FYAxis,FXAxis);
end;
procedure TCanvasPlotter.DrawHAxis(ACanvas: TCanvas; Const AHAxis,AVAxis : TPlotAxis);
Var
OX,OY,EX,EY : Integer;
CX,CY,CW : Integer;
I,X,TE : integer;
TickDelta : Double;
V,VD : TPlotFloat;
S,L : String;
begin
OX:=FBoundsRect.Left+AHAxis.Margin1;
EX:=FBoundsRect.Right-AHAxis.Margin2;
OY:=FBoundsRect.Bottom-AVAxis.Margin1;
EY:=FBoundsRect.Top+AVAxis.Margin2;
// Writeln(Format('(%d,%d) -> (%d,%d) (%d,%d) (%d,%d)',[width,height,ox,oy,ox,ey,ex,oy]));
// X axis
ACanvas.Brush.Style := bsClear;
ACanvas.Pen.Color:=AHAxis.Color;
ACanvas.Pen.Width:=AHAxis.LineWidth;
ACanvas.Line(OX,OY,EX,OY);
Canvas.Font:=AHAxis.TickFont;
TickDelta:=AHAxis.TickDelta;
VD:=AHAxis.ValueDelta;
TE:=OY+AHAxis.TickSize;
I:=0;
V:=AHAxis.Origin;
L:=AHAxis.LegendFormat;
If (L='') then
L:='#0.#';
Repeat
ACanvas.Pen.Color:=AHAxis.TickColor;
ACanvas.Pen.Width := AHAxis.TickLinewidth;
X:=OX+Round(I*TickDelta);
ACanvas.Line(X,OY,X,TE);
If (AHAxis.GridInterval<>0) and ((I mod AHAxis.GridInterval)=0) then
begin
ACanvas.Pen.Color:=AHAxis.GridColor;
ACanvas.Pen.Width := AHAxis.GridLinewidth;
ACanvas.Line(X,OY,X,EY);
end;
If (AHAxis.LegendInterval<>0) and ((I mod AHAxis.LegendInterval)=0) then
begin
S:=FormatFloat(L,V);
CW:=Canvas.TextWidth(S);
Canvas.TextOut(X-(CW Div 2),TE+4,S);
end;
Inc(I);
V:=V+VD;
Until X>=EX;
if AHAxis.DrawZero and ((AHAxis.Origin<0) and ((AHAxis.Origin+AHAxis.Interval)>0)) then
begin
X:=OX+Round((EX-OX)*Abs(AHAxis.Origin)/AHAxis.Interval);
ACanvas.Pen.Color:=AHAxis.TickColor;
ACanvas.Pen.Width := AHAxis.ZeroLinewidth;
ACanvas.Line(X,OY,X,EY);
end;
Canvas.Font:=AHAxis.Caption.Font;
CW:=ACanvas.TextWidth(AHAxis.Caption.Title);
Case AHAxis.Caption.Alignment of
taLeftJustify : CX:=OX;
taRightJustify : CX:=EX-CW;
taCenter : CX:=(EX+OX-CW) div 2;
end;
// Writeln(Format('Caption at (%d,%d) : %s',[CX,CY,AHAxis.Caption]));
CY:=OY+AHAxis.TickSize+4+ACanvas.TextHeight('X')+4;
ACanvas.TextOut(CX,CY,AHAxis.Caption.Title);
end;
procedure TCanvasPlotter.DrawVAxis(ACanvas: TCanvas; Const AVAxis,AHAxis : TPlotAxis);
Var
OX,OY,EX,EY : Integer;
CY,CH,CW : Integer;
I,Y,TE : integer;
TickDelta : Double;
V,VD : TPlotFloat;
S,L : String;
// Vertical font support
OldFont, RotatedFont: HFONT;
ALogFont : TLogFont;
// GTK 1
BMP : TBitmap;
begin
// ACanvas.DrawText(FXAxis.Caption);
// Y axis
OX:=FBoundsRect.Left+AHAxis.Margin1;
EX:=FBoundsRect.Right-AHAxis.Margin2;
OY:=FBoundsRect.Bottom-AVAxis.Margin1;
EY:=FBoundsRect.Top+AVAxis.Margin2;
ACanvas.Brush.Style := bsClear;
ACanvas.Pen.Color:=AVAxis.Color;
ACanvas.Pen.Width:=AVAxis.Linewidth;
ACanvas.Line(OX,OY,OX,EY);
TickDelta:=AVAxis.TickDelta;
VD:=AVAxis.ValueDelta;
TE:=OX-AVAxis.TickSize;
V:=AVAxis.Origin;
L:=AVAxis.LegendFormat;
Canvas.Font:=AVAxis.TickFont;
If (L='') then
L:='#0.#';
I:=0;
CH:=Canvas.TextHeight('X') div 2;
Repeat
Y:=OY-Round(I*TickDelta);
ACanvas.Pen.Color:=AVAxis.TickColor;
ACanvas.Pen.Width := AVAxis.TickLinewidth;
ACanvas.Line(TE,Y,OX,Y);
If (Y<>OY) and (AVAxis.GridInterval<>0) and ((I mod AVAxis.GridInterval)=0) then
begin
ACanvas.Pen.Color:=AVAxis.GridColor;
ACanvas.Pen.Width := AVAxis.GridLinewidth;
ACanvas.Line(OX,Y,EX,Y);
end;
If (AVAxis.LegendInterval<>0) and ((I mod AVAxis.LegendInterval)=0) then
begin
S:=FormatFloat(L,V);
CW:=Canvas.TextWidth(S);
Canvas.TextOut(TE-CW-4,Y-CH,S);
end;
Inc(I);
V:=V+VD;
Until Y<=EY;
if AVAxis.DrawZero and ((AVAxis.Origin<0) and ((AVAxis.Origin+AVAxis.Interval)>0)) then
begin
Y:=OY-Round((OY-EY)*Abs(AVAxis.Origin)/AVAxis.Interval);
ACanvas.Pen.Color:=AVAxis.TickColor;
ACanvas.Pen.Width := AVAxis.ZeroLinewidth;
ACanvas.Line(OX,Y,EX,Y);
end;
L:=AVAxis.Caption.Title;
ACanvas.Font:=AVAxis.Caption.Font;
CH:=ACanvas.TextHeight(L);
If CompareText(WidgetSet.ClassName,'TGTK1WidgetSet')<>0 then
begin
// Use Vertical font
OldFont := 0;
if GetObject(ACanvas.Font.Reference.Handle, SizeOf(ALogFont), @ALogFont) <> 0 then
begin
ALogFont.lfEscapement := 900;
RotatedFont := CreateFontIndirect(ALogFont);
if RotatedFont <> 0 then
OldFont:=SelectObject(ACanvas.Handle, RotatedFont);
CW:=ACanvas.TextWidth(L);
Case AVAxis.Caption.Alignment of
taLeftJustify : CY:=OY;
taRightJustify : CY:=EY+CW;
taCenter : CY:=(EY+OY+CW) div 2;
end;
TextOut(ACanvas.Handle, 4, CY, PChar(L), Length(L));
if OldFont <> 0 then
DeleteObject(SelectObject(ACanvas.Handle, OldFont));
end;
end
else
begin
BMP:=GetRotatedLegend(ACanvas);
CW:=BMP.Height;
Case AVAxis.Caption.Alignment of
taLeftJustify : CY:=OY-CW;
taRightJustify : CY:=EY;
taCenter : CY:=(EY+OY-CW) div 2;
end;
Canvas.Draw(4,CY,Bmp);
end;
end;
Function TCanvasPlotter.GetRotatedLegend(ACanvas : TCanvas) : TBitmap;
{
This is an expensive operation, so we do it once and cache the result.
When the parameters (font,legend) change, we regenerate the bitmap
}
Var
CW,CH,I,J : Integer;
BMP : TBitmap;
SrcIntfImg, DestIntfImg: TLazIntfImage;
L : String;
ImgHandle,ImgMaskHandle: HBitmap;
begin
If (FBitmap=Nil) then
begin
FBitmap:=TBitmap.Create;
FLastFont:=TFont.Create;
end
else
begin
If (FLastLegend=FYAxis.Caption.Title) and
(FLastFont.Name=FYaxis.Caption.Font.name) and
(FLastFont.Style=FYaxis.Caption.Font.Style) and
(FLastFont.Size=FYaxis.Caption.Font.Size) then
// NOthing changed, return last bitmap.
Exit(FBitmap);
FBitmap.Clear;
end;
L:=FYAxis.Caption.Title;
ACanvas.Font:=FYAxis.Caption.Font;
FLastLegend:=L;
FLastFont.Assign(FYAxis.Caption.Font);
BMP:=TBitmap.Create;
try
BMP.Canvas.Font:=FYAxis.Caption.Font;
CH:=BMP.Canvas.TextHeight(L);
CW:=BMP.Canvas.TextWidth(L);
BMP.Width:=CW;
BMP.Height:=CH;
BMP.Canvas.Brush.Color:=Self.Color;
BMP.Canvas.Brush.Style:=bsSolid;
BMP.Canvas.FillRect(0,0,CW,CH);
BMP.Canvas.TextOut(0,0,L);
SrcIntfImg:=TLazIntfImage.Create(0,0);
try
SrcIntfImg.LoadFromBitmap(BMP.Handle,BMP.MaskHandle);
DestIntfImg:=TLazIntfImage.Create(0,0);
try
DestIntfImg.LoadFromBitmap(BMP.Handle,BMP.MaskHandle);
DestIntfImg.Width:=CH;
DestIntfImg.Height:=CW;
For I:=0 to CW-1 do
For J:=0 to CH-1 do
DestIntfImg.Colors[J,CW-1-I]:=SrcIntfImg.Colors[I,J];
DestIntfImg.CreateBitmaps(ImgHandle,ImgMaskHandle,True);
FBitmap.Handle:=ImgHandle;
FBitmap.MaskHandle:=ImgMaskHandle;
Result:=FBitmap;
finally
DestIntfImg.Free;
end;
finally
SrcIntfImg.Free;
end;
finally
BMP.Free;
end;
end;
procedure TCanvasPlotter.PlotFunction(ACanvas: TCanvas);
Var
POX,PX,PXW,PY,POY,PEY,PYH,PLX,PLY : Integer; // Pixel units
X,Y,XI,YI,YO : TPlotFloat; // Plot units
R: TRect;
clp: Boolean;
begin
// X-origin in pixels.
// NOTE: this is not the location of "zero" but the left edge of the plot area.
POX:=FXAxis.LeftMargin;
// Width in pixels
PXW:= BoundsRect.Width - FXAxis.RightMargin - POX + 1;
// Y origin in pixels
// NOTE: this is not the location of "zero" but the bottom edge of the plot area.
POY := BoundsRect.Height - FYAxis.BottomMargin;
// Height in pixels
PYH:=POY-FYAxis.TopMargin+1;
// Y top
YI:=PYH/FYAxis.Interval;
// Interval in plot units
XI:=FXAxis.Interval/PXW;
// Y plot Origin, i.e. bottom edge of the plot area, in world coordinates
YO:=FYAxis.Origin;
// Y plot max value
PEY:=FYAxis.TopMargin;
// Y interval
YI:=PYH/FYAxis.Interval;
// Start value
X:=FXAxis.Origin;
ACanvas.Pen.Color:=PlotColor;
ACanvas.Pen.Width := FPlotLineWidth;
PLX:=POX;
PLY:=POY;
R := ACanvas.ClipRect;
clp := ACanvas.Clipping;
ACanvas.ClipRect := Rect(POX, FYAxis.TopMargin, PXW + POX, POY);
ACanvas.Clipping := true;
try
For PX:=0 to PXW do
begin
try
Y:=CalcFunction(X);
PY:=POY-Trunc((Y-YO)*YI);
except
// Catch math calculation exceptions.
On E : EMathError do
begin
PY:=PEY+1;
end;
On E : EIntError do
begin
PY:=PEY+1;
end;
On E : Exception do
Raise;
end;
If (PX>0) and (PY>=PEY) and (PY<=POY) then
begin
// Writeln(Format('(%f,%f) -> (%d,%d)',[X,Y,PX+Pox,PY]));
// ACanvas.Pixels[PX+Pox,PY]:=PlotColor;
ACanvas.Line(Pox+PLX,PLY,POX+PX,PY);
end;
PLX:=PX;
PLY:=PY;
X:=X+XI;
end;
finally
ACanvas.ClipRect := R;
ACanvas.Clipping := clp;
end;
end;
function TCanvasPlotter.GetHDimension: Integer;
begin
Result:=FBoundsRect.Right-FBoundsRect.Left+1;
end;
function TCanvasPlotter.GetVDimension: Integer;
begin
Result:=FBoundsRect.Bottom-FBoundsRect.Top+1;
end;
{ TControlPlotter }
procedure TControlPlotter.Changed;
begin
// If Not (FControl.ComponentState in [csLoading]) then;
FControl.Invalidate;
end;
constructor TControlPlotter.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
If AOwner is TCOntrol then
begin
FControl:=AOwner as TControl;
if FColor = clDefault then
FColor := FControl.Color;
if FBkColor = clDefault then
FBkColor := FControl.Color;
end;
end;
{ TEventControlPlotter }
procedure TEventControlPlotter.SetOnCalcPlot(const AValue: TOnCalcPlotEvent);
begin
FOnCalcPlot:=AValue;
Changed;
end;
function TEventControlPlotter.CalcFunction(X: TPlotFloat): TPlotFloat;
begin
If Assigned(FOnCalcPlot) then
FOnCalcPlot(X,Result)
else
Result:=inherited CalcFunction(X);
end;
{ TPlotFunctionPanel }
function TPlotFunctionPanel.GetOnCalcPlot: TOnCalcPlotEvent;
begin
If Assigned(FPlotter) then
Result:=TEventControlPlotter(FPlotter).OnCalcPlot
else
Result:=Nil;
end;
procedure TPlotFunctionPanel.SetOnCalcPlot(AValue: TOnCalcPlotEvent);
begin
If Assigned(FPlotter) then
TEventControlPlotter(FPlotter).OnCalcPlot:=Avalue
end;
function TPlotFunctionPanel.CreatePlotter: TCanvasPlotter;
begin
Result:=TEventControlPlotter.Create(Self);
end;
{ TPlotCaption }
procedure TPlotCaption.SetAlignment(const AValue: TAlignment);
begin
if FAlignment=AValue then exit;
FAlignment:=AValue;
Changed;
end;
procedure TPlotCaption.SetFont(const AValue: TFont);
begin
if FFont=AValue then exit;
FFont:=AValue;
Changed;
end;
procedure TPlotCaption.SetTitle(const AValue: String);
begin
if FTitle=AValue then exit;
FTitle:=AValue;
Changed;
end;
procedure TPlotCaption.Changed;
begin
If Assigned(FOnChange) then
FOnChange(Self);
end;
constructor TPlotCaption.Create;
begin
FFont:=TFont.Create;
FFont.OnChange := FOnChange;
end;
destructor TPlotCaption.Destroy;
begin
FreeAndNil(FFont);
inherited Destroy;
end;
end.
|