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 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112
|
{
/***************************************************************************
TAGraph.pas
-----------
Component Library Standard Graph
***************************************************************************/
*****************************************************************************
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
Authors: LuÃs Rodrigues, Philippe Martinole, Alexander Klenin
}
unit TAGraph;
{$H+}
interface
uses
Graphics, Classes, Controls, LCLType, SysUtils,
TAChartAxis, TAChartAxisUtils, TAChartUtils, TADrawUtils, TAGUIConnector,
TALegend, TATextElements, TATypes;
type
TChart = class;
TReticuleMode = (rmNone, rmVertical, rmHorizontal, rmCross);
TDrawReticuleEvent = procedure(
ASender: TChart; ASeriesIndex, AIndex: Integer;
const AData: TDoublePoint) of object;
TChartDrawLegendEvent = procedure(
ASender: TChart; ADrawer: IChartDrawer; ALegendItems: TChartLegendItems;
ALegendItemSize: TPoint; const ALegendRect: TRect;
AColCount, ARowCount: Integer) of object;
{ TBasicChartSeries }
TBasicChartSeries = class(TIndexedComponent)
protected
FActive: Boolean;
FChart: TChart;
FDepth: TChartDistance;
FDragOrigin: TPoint;
FShadow: TChartShadow;
FTransparency: TChartTransparency;
FZPosition: TChartDistance;
FSpecialPointPos: Boolean;
procedure AfterAdd; virtual; abstract;
procedure AfterDraw; virtual;
procedure BeforeDraw; virtual;
procedure GetLegendItemsBasic(AItems: TChartLegendItems); virtual; abstract;
function GetShowInLegend: Boolean; virtual; abstract;
procedure SetActive(AValue: Boolean); virtual; abstract;
procedure SetDepth(AValue: TChartDistance); virtual; abstract;
procedure SetShadow(AValue: TChartShadow); virtual; abstract;
procedure SetShowInLegend(AValue: Boolean); virtual; abstract;
procedure SetTransparency(AValue: TChartTransparency); virtual; abstract;
procedure SetZPosition(AValue: TChartDistance); virtual; abstract;
procedure UpdateMargins(ADrawer: IChartDrawer; var AMargins: TRect); virtual;
procedure VisitSources(
AVisitor: TChartOnSourceVisitor; AAxis: TChartAxis; var AData); virtual;
public
function AxisToGraphX(AX: Double): Double; virtual;
function AxisToGraphY(AY: Double): Double; virtual;
function GraphToAxisX(AX: Double): Double; virtual;
function GraphToAxisY(AY: Double): Double; virtual;
public
procedure Assign(Source: TPersistent); override;
destructor Destroy; override;
public
procedure Draw(ADrawer: IChartDrawer); virtual; abstract;
function GetAxisBounds(AAxis: TChartAxis; out AMin, AMax: Double): boolean; virtual; abstract;
function GetGraphBounds: TDoubleRect; virtual; abstract;
function IsEmpty: Boolean; virtual; abstract;
procedure MovePoint(var AIndex: Integer; const ANewPos: TPoint); overload; inline;
procedure MovePoint(var AIndex: Integer; const ANewPos: TDoublePoint); overload; virtual;
procedure MovePointEx(var AIndex: Integer; AXIndex, AYIndex: Integer;
const ANewPos: TDoublePoint); virtual;
procedure UpdateBiDiMode; virtual;
property Active: Boolean read FActive write SetActive default true;
property Depth: TChartDistance read FDepth write SetDepth default 0;
property DragOrigin: TPoint read FDragOrigin write FDragOrigin;
property ParentChart: TChart read FChart;
property Shadow: TChartShadow read FShadow write SetShadow;
property SpecialPointPos: Boolean read FSpecialPointPos;
property Transparency: TChartTransparency
read FTransparency write SetTransparency default 0;
property ZPosition: TChartDistance read FZPosition write SetZPosition default 0;
end;
TSeriesClass = class of TBasicChartSeries;
{ TBasicСhartTool }
TBasicChartTool = class(TIndexedComponent)
strict protected
FChart: TChart;
FStartMousePos: TPoint;
procedure Activate; virtual;
procedure Deactivate; virtual;
function PopupMenuConflict: Boolean; virtual;
public
property Chart: TChart read FChart;
end;
TChartToolEventId = (
evidKeyDown, evidKeyUp, evidMouseDown, evidMouseMove, evidMouseUp,
evidMouseWheelDown, evidMouseWheelUp);
{ TBasicChartToolset }
TBasicChartToolset = class(TComponent)
public
function Dispatch(
AChart: TChart; AEventId: TChartToolEventId;
AShift: TShiftState; APoint: TPoint): Boolean; virtual; abstract; overload;
procedure Draw(AChart: TChart; ADrawer: IChartDrawer); virtual; abstract;
end;
TBasicChartSeriesEnumerator = class(TFPListEnumerator)
public
function GetCurrent: TBasicChartSeries;
property Current: TBasicChartSeries read GetCurrent;
end;
{ TChartSeriesList }
TChartSeriesList = class(TPersistent)
private
FList: TIndexedComponentList;
function GetItem(AIndex: Integer): TBasicChartSeries;
public
constructor Create;
destructor Destroy; override;
public
procedure Clear;
function Count: Integer;
function GetEnumerator: TBasicChartSeriesEnumerator;
procedure UpdateBiDiMode;
public
property Items[AIndex: Integer]: TBasicChartSeries read GetItem; default;
property List: TIndexedComponentList read FList;
end;
TChartAfterCustomDrawEvent = procedure (
ASender: TChart; ADrawer: IChartDrawer; const ARect: TRect) of object;
TChartBeforeCustomDrawEvent = procedure (
ASender: TChart; ADrawer: IChartDrawer; const ARect: TRect;
var ADoDefaultDrawing: Boolean) of object;
TChartAfterDrawEvent = procedure (
ASender: TChart; ACanvas: TCanvas; const ARect: TRect) of object;
TChartBeforeDrawEvent = procedure (
ASender: TChart; ACanvas: TCanvas; const ARect: TRect;
var ADoDefaultDrawing: Boolean) of object;
TChartEvent = procedure (ASender: TChart) of object;
TChartPaintEvent = procedure (
ASender: TChart; const ARect: TRect;
var ADoDefaultDrawing: Boolean) of object;
TChartDrawEvent = procedure (
ASender: TChart; ADrawer: IChartDrawer) of object;
TChartRenderingParams = record
FClipRect: TRect;
FIsZoomed: Boolean;
FLogicalExtent, FPrevLogicalExtent: TDoubleRect;
FScale, FOffset: TDoublePoint;
end;
{ TChart }
TChart = class(TCustomChart, ICoordTransformer)
strict private // Property fields
FAllowZoom: Boolean;
FAntialiasingMode: TChartAntialiasingMode;
FAxisList: TChartAxisList;
FAxisVisible: Boolean;
FBackColor: TColor;
FConnectorData: TChartGUIConnectorData;
FDepth: TChartDistance;
FDefaultGUIConnector: TChartGUIConnector;
FExpandPercentage: Integer;
FExtent: TChartExtent;
FExtentSizeLimit: TChartExtent;
FFoot: TChartTitle;
FFrame: TChartPen;
FGUIConnector: TChartGUIConnector;
FGUIConnectorListener: TListener;
FLegend: TChartLegend;
FLogicalExtent: TDoubleRect;
FMargins: TChartMargins;
FMarginsExternal: TChartMargins;
FMinDataSpace: Integer;
FOnAfterCustomDrawBackground: TChartAfterCustomDrawEvent;
FOnAfterCustomDrawBackWall: TChartAfterCustomDrawEvent;
FOnAfterDraw: TChartDrawEvent;
FOnAfterDrawBackground: TChartAfterDrawEvent;
FOnAfterDrawBackWall: TChartAfterDrawEvent;
FOnBeforeCustomDrawBackground: TChartBeforeCustomDrawEvent;
FOnBeforeCustomDrawBackWall: TChartBeforeCustomDrawEvent;
FOnBeforeDrawBackground: TChartBeforeDrawEvent;
FOnBeforeDrawBackWall: TChartBeforeDrawEvent;
FOnChartPaint: TChartPaintEvent;
FOnDrawReticule: TDrawReticuleEvent;
FOnDrawLegend: TChartDrawLegendEvent;
FProportional: Boolean;
FSeries: TChartSeriesList;
FTitle: TChartTitle;
FToolset: TBasicChartToolset;
function ClipRectWithoutFrame(AZPosition: TChartDistance): TRect;
function EffectiveGUIConnector: TChartGUIConnector; inline;
private
FActiveToolIndex: Integer;
FAutoFocus: Boolean;
FBroadcaster: TBroadcaster;
FBuiltinToolset: TBasicChartToolset;
FClipRect: TRect;
FCurrentExtent: TDoubleRect;
FDisableRedrawingCounter: Integer;
FExtentBroadcaster: TBroadcaster;
FIsZoomed: Boolean;
FOffset: TDoublePoint; // Coordinates transformation
FOnAfterPaint: TChartEvent;
FOnExtentChanged: TChartEvent;
FOnExtentChanging: TChartEvent;
FPrevLogicalExtent: TDoubleRect;
FReticuleMode: TReticuleMode;
FReticulePos: TPoint;
FScale: TDoublePoint; // Coordinates transformation
FSavedClipRect: TRect;
FClipRectLock: Integer;
procedure CalculateTransformationCoeffs(const AMargin, AChartMargins: TRect;
const AMinDataSpace: Integer);
procedure DrawReticule(ADrawer: IChartDrawer); deprecated 'Use DatapointCrosshairTool instead';
procedure FindComponentClass(
AReader: TReader; const AClassName: String; var AClass: TComponentClass);
function GetChartHeight: Integer;
function GetChartWidth: Integer;
function GetHorAxis: TChartAxis;
function GetMargins(ADrawer: IChartDrawer): TRect;
function GetRenderingParams: TChartRenderingParams;
function GetSeriesCount: Integer;
function GetToolset: TBasicChartToolset;
function GetVertAxis: TChartAxis;
procedure HideReticule; deprecated 'Use DatapointCrosshairTool instead';
procedure SetAntialiasingMode(AValue: TChartAntialiasingMode);
procedure SetAxisList(AValue: TChartAxisList);
procedure SetAxisVisible(Value: Boolean);
procedure SetBackColor(AValue: TColor);
procedure SetDepth(AValue: TChartDistance);
procedure SetExpandPercentage(AValue: Integer);
procedure SetExtent(AValue: TChartExtent);
procedure SetExtentSizeLimit(AValue: TChartExtent);
procedure SetFoot(Value: TChartTitle);
procedure SetFrame(Value: TChartPen);
procedure SetGUIConnector(AValue: TChartGUIConnector);
procedure SetLegend(Value: TChartLegend);
procedure SetLogicalExtent(const AValue: TDoubleRect);
procedure SetMargins(AValue: TChartMargins);
procedure SetMarginsExternal(AValue: TChartMargins);
procedure SetMinDataSpace(const AValue: Integer);
procedure SetOnAfterCustomDrawBackground(AValue: TChartAfterCustomDrawEvent);
procedure SetOnAfterCustomDrawBackWall(AValue: TChartAfterCustomDrawEvent);
procedure SetOnAfterDraw(AValue: TChartDrawEvent);
procedure SetOnAfterDrawBackground(AValue: TChartAfterDrawEvent);
procedure SetOnAfterDrawBackWall(AValue: TChartAfterDrawEvent);
procedure SetOnBeforeCustomDrawBackground(AValue: TChartBeforeCustomDrawEvent);
procedure SetOnBeforeCustomDrawBackWall(AValue: TChartBeforeCustomDrawEvent);
procedure SetOnBeforeDrawBackground(AValue: TChartBeforeDrawEvent);
procedure SetOnBeforeDrawBackWall(AValue: TChartBeforeDrawEvent);
procedure SetOnChartPaint(AValue: TChartPaintEvent);
procedure SetOnDrawLegend(AValue: TChartDrawLegendEvent);
procedure SetOnDrawReticule(AValue: TDrawReticuleEvent); deprecated 'Use DatapointCrosshairTool instead';
procedure SetProportional(AValue: Boolean);
procedure SetRenderingParams(AValue: TChartRenderingParams);
procedure SetReticuleMode(AValue: TReticuleMode); deprecated 'Use DatapointCrosshairTool instead';
procedure SetReticulePos(const AValue: TPoint); deprecated 'Use DatapointCrosshairTool instead';
procedure SetTitle(Value: TChartTitle);
procedure SetToolset(AValue: TBasicChartToolset);
procedure VisitSources(
AVisitor: TChartOnSourceVisitor; AAxis: TChartAxis; var AData);
protected
FDisablePopupMenu: Boolean;
procedure DoContextPopup(MousePos: TPoint; var Handled: Boolean); override;
function DoMouseWheel(
AShift: TShiftState; AWheelDelta: Integer;
AMousePos: TPoint): Boolean; override;
procedure MouseDown(
Button: TMouseButton; Shift: TShiftState; X, Y: Integer); override;
procedure MouseMove(Shift: TShiftState; X, Y: Integer); override;
procedure MouseUp(
AButton: TMouseButton; AShift: TShiftState; AX, AY: Integer); override;
protected
function GetAxisBounds(AAxis: TChartAxis): TDoubleInterval;
function GetAxisByAlign(AAlign: TChartAxisAlignment): TChartAxis;
procedure SetAxisByAlign(AAlign: TChartAxisAlignment; AValue: TChartAxis); inline;
protected
procedure Clear(ADrawer: IChartDrawer; const ARect: TRect);
procedure DisplaySeries(ADrawer: IChartDrawer);
procedure DrawBackWall(ADrawer: IChartDrawer);
procedure KeyDownAfterInterface(var AKey: Word; AShift: TShiftState); override;
procedure KeyUpAfterInterface(var AKey: Word; AShift: TShiftState); override;
{$IFDEF LCLGtk2}
procedure DoOnResize; override;
{$ENDIF}
procedure Notification(
AComponent: TComponent; AOperation: TOperation); override;
procedure PrepareAxis(ADrawer: IChartDrawer);
function PrepareLegend(
ADrawer: IChartDrawer; var AClipRect: TRect): TChartLegendDrawingData;
procedure SetBiDiMode(AValue: TBiDiMode); override;
procedure SetName(const AValue: TComponentName); override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure EraseBackground(DC: HDC); override;
procedure GetChildren(AProc: TGetChildProc; ARoot: TComponent); override;
procedure Paint; override;
procedure SetChildOrder(Child: TComponent; Order: Integer); override;
public // Helpers for series drawing
procedure DrawLineHoriz(ADrawer: IChartDrawer; AY: Integer);
procedure DrawLineVert(ADrawer: IChartDrawer; AX: Integer);
function IsPointInViewPort(const AP: TDoublePoint): Boolean;
public
procedure AddSeries(ASeries: TBasicChartSeries);
procedure ClearSeries;
function Clone: TChart; overload;
function Clone(ANewOwner, ANewParent: TComponent): TChart; overload;
procedure CopyToClipboardBitmap;
procedure DeleteSeries(ASeries: TBasicChartSeries);
procedure DisableRedrawing;
procedure Draw(ADrawer: IChartDrawer; const ARect: TRect);
procedure DrawLegendOn(ACanvas: TCanvas; var ARect: TRect);
procedure EnableRedrawing;
function GetFullExtent: TDoubleRect;
function GetLegendItems(AIncludeHidden: Boolean = false): TChartLegendItems;
procedure Notify(ACommand: Integer; AParam1, AParam2: Pointer; var AData); override;
procedure PaintOnAuxCanvas(ACanvas: TCanvas; ARect: TRect);
procedure PaintOnCanvas(ACanvas: TCanvas; ARect: TRect);
procedure Prepare;
procedure RemoveSeries(ASeries: TBasicChartSeries); inline;
procedure SaveToBitmapFile(const AFileName: String); inline;
procedure SaveToFile(AClass: TRasterImageClass; AFileName: String);
function SaveToImage(AClass: TRasterImageClass): TRasterImage;
procedure StyleChanged(Sender: TObject); override;
procedure ZoomFull(AImmediateRecalc: Boolean = false); override;
property Drawer: IChartDrawer read FConnectorData.FDrawer;
public // Coordinate conversion
function GraphToImage(const AGraphPoint: TDoublePoint): TPoint;
function ImageToGraph(const APoint: TPoint): TDoublePoint;
function XGraphToImage(AX: Double): Integer; inline;
function XImageToGraph(AX: Integer): Double; inline;
function YGraphToImage(AY: Double): Integer; inline;
function YImageToGraph(AY: Integer): Double; inline;
public
procedure LockClipRect;
procedure UnlockClipRect;
public
property ActiveToolIndex: Integer read FActiveToolIndex;
property Broadcaster: TBroadcaster read FBroadcaster;
property ChartHeight: Integer read GetChartHeight;
property ChartWidth: Integer read GetChartWidth;
property ClipRect: TRect read FClipRect;
property CurrentExtent: TDoubleRect read FCurrentExtent;
property ExtentBroadcaster: TBroadcaster read FExtentBroadcaster;
property HorAxis: TChartAxis read GetHorAxis;
property IsZoomed: Boolean read FIsZoomed;
property LogicalExtent: TDoubleRect read FLogicalExtent write SetLogicalExtent;
property MinDataSpace: Integer
read FMinDataSpace write SetMinDataSpace; // default DEF_MIN_DATA_SPACE;
property OnChartPaint: TChartPaintEvent
read FOnChartPaint write SetOnChartPaint; experimental;
property PrevLogicalExtent: TDoubleRect read FPrevLogicalExtent;
property RenderingParams: TChartRenderingParams
read GetRenderingParams write SetRenderingParams;
property ReticulePos: TPoint read FReticulePos write SetReticulePos; deprecated 'Use DatapointCrosshairTool instead';
property SeriesCount: Integer read GetSeriesCount;
property VertAxis: TChartAxis read GetVertAxis;
property XGraphMax: Double read FCurrentExtent.b.X;
property XGraphMin: Double read FCurrentExtent.a.X;
property YGraphMax: Double read FCurrentExtent.b.Y;
property YGraphMin: Double read FCurrentExtent.a.Y;
published
property AutoFocus: Boolean read FAutoFocus write FAutoFocus default false;
property AllowZoom: Boolean read FAllowZoom write FAllowZoom default true;
property AntialiasingMode: TChartAntialiasingMode
read FAntialiasingMode write SetAntialiasingMode default amDontCare;
property AxisList: TChartAxisList read FAxisList write SetAxisList;
property AxisVisible: Boolean read FAxisVisible write SetAxisVisible default true;
property BackColor: TColor read FBackColor write SetBackColor default clBtnFace;
property BottomAxis: TChartAxis index calBottom read GetAxisByAlign write SetAxisByAlign stored false;
property Depth: TChartDistance read FDepth write SetDepth default 0;
property ExpandPercentage: Integer
read FExpandPercentage write SetExpandPercentage default 0;
property Extent: TChartExtent read FExtent write SetExtent;
property ExtentSizeLimit: TChartExtent read FExtentSizeLimit write SetExtentSizeLimit;
property Foot: TChartTitle read FFoot write SetFoot;
property Frame: TChartPen read FFrame write SetFrame;
property GUIConnector: TChartGUIConnector
read FGUIConnector write SetGUIConnector;
property LeftAxis: TChartAxis index calLeft read GetAxisByAlign write SetAxisByAlign stored false;
property Legend: TChartLegend read FLegend write SetLegend;
property Margins: TChartMargins read FMargins write SetMargins;
property MarginsExternal: TChartMargins
read FMarginsExternal write SetMarginsExternal;
property Proportional: Boolean
read FProportional write SetProportional default false;
property ReticuleMode: TReticuleMode
read FReticuleMode write SetReticuleMode default rmNone; deprecated 'Use DatapointCrosshairTool instead';
property Series: TChartSeriesList read FSeries;
property Title: TChartTitle read FTitle write SetTitle;
property Toolset: TBasicChartToolset read FToolset write SetToolset;
published
property OnAfterCustomDrawBackground: TChartAfterCustomDrawEvent
read FOnAfterCustomDrawBackground write SetOnAfterCustomDrawBackground;
property OnAfterCustomDrawBackWall: TChartAfterCustomDrawEvent
read FOnAfterCustomDrawBackWall write SetOnAfterCustomDrawBackWall;
property OnAfterDraw: TChartDrawEvent read FOnAfterDraw write SetOnAfterDraw;
deprecated 'Use OnAfterCustomDraw instead';
property OnAfterDrawBackground: TChartAfterDrawEvent
read FOnAfterDrawBackground write SetOnAfterDrawBackground;
deprecated 'Use OnAfterCustomDrawBackground instead';
property OnAfterDrawBackWall: TChartAfterDrawEvent
read FOnAfterDrawBackWall write SetOnAfterDrawBackWall;
deprecated 'Use OnAfterCustomDrawBackWall instead';
property OnAfterPaint: TChartEvent read FOnAfterPaint write FOnAfterPaint;
property OnBeforeCustomDrawBackground: TChartBeforeCustomDrawEvent
read FOnBeforeCustomDrawBackground write SetOnBeforeCustomDrawBackground;
property OnBeforeDrawBackground: TChartBeforeDrawEvent
read FOnBeforeDrawBackground write SetOnBeforeDrawBackground;
deprecated 'Use OnBeforeCustomDrawBackground instead';
property OnBeforeCustomDrawBackWall: TChartBeforeCustomDrawEvent
read FOnBeforeCustomDrawBackWall write SetOnBeforeCustomDrawBackwall;
property OnBeforeDrawBackWall: TChartBeforeDrawEvent
read FOnBeforeDrawBackWall write SetOnBeforeDrawBackWall;
deprecated 'Use OnBeforeCustomDrawBackWall instead';
property OnDrawLegend: TChartDrawLegendEvent
read FOnDrawLegend write SetOnDrawLegend;
property OnDrawReticule: TDrawReticuleEvent
read FOnDrawReticule write SetOnDrawReticule;
deprecated 'Use DatapointCrosshairTool instead';
property OnExtentChanged: TChartEvent
read FOnExtentChanged write FOnExtentChanged;
property OnExtentChanging: TChartEvent
read FOnExtentChanging write FOnExtentChanging;
published
property Align;
property Anchors;
property BiDiMode;
property BorderSpacing;
property Color default clBtnFace;
property DoubleBuffered;
property DragCursor;
property DragMode;
property Enabled;
property ParentBiDiMode;
property ParentColor default false;
property ParentShowHint;
property PopupMenu;
property ShowHint;
property Visible;
published
property OnClick;
property OnContextPopup;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnMouseDown;
property OnMouseMove;
property OnMouseUp;
property OnResize;
property OnStartDrag;
end;
procedure Register;
procedure RegisterSeriesClass(ASeriesClass: TSeriesClass; const ACaption: String); overload;
procedure RegisterSeriesClass(ASeriesClass: TSeriesClass; ACaptionPtr: PStr); overload;
var
SeriesClassRegistry: TClassRegistry = nil;
OnInitBuiltinTools: function(AChart: TChart): TBasicChartToolset = nil;
implementation
{$R tagraph.res}
uses
Clipbrd, Dialogs, GraphMath, LCLProc, LResources, Math, Types,
TADrawerCanvas, TAGeometry, TAMath, TAStyles;
function CompareZPosition(AItem1, AItem2: Pointer): Integer;
begin
Result :=
TBasicChartSeries(AItem1).ZPosition - TBasicChartSeries(AItem2).ZPosition;
end;
procedure Register;
var
i: Integer;
sc: TSeriesClass;
begin
RegisterComponents(CHART_COMPONENT_IDE_PAGE, [TChart]);
for i := 0 to SeriesClassRegistry.Count - 1 do begin
sc := TSeriesClass(SeriesClassRegistry.GetClass(i));
RegisterClass(sc);
RegisterNoIcon([sc]);
end;
end;
procedure RegisterSeriesClass(ASeriesClass: TSeriesClass; const ACaption: String);
begin
if SeriesClassRegistry.IndexOfClass(ASeriesClass) < 0 then
SeriesClassRegistry.Add(TClassRegistryItem.Create(ASeriesClass, ACaption));
end;
procedure RegisterSeriesClass(ASeriesClass: TSeriesClass; ACaptionPtr: PStr);
begin
if SeriesClassRegistry.IndexOfClass(ASeriesClass) < 0 then
SeriesClassRegistry.Add(TClassRegistryItem.CreateRes(ASeriesClass, ACaptionPtr));
end;
procedure WriteComponentToStream(AStream: TStream; AComponent: TComponent);
var
writer: TWriter;
destroyDriver: Boolean = false;
begin
writer := CreateLRSWriter(AStream, destroyDriver);
try
writer.Root := AComponent.Owner;
writer.WriteComponent(AComponent);
finally
if destroyDriver then
writer.Driver.Free;
writer.Free;
end;
end;
{ TBasicChartSeriesEnumerator }
function TBasicChartSeriesEnumerator.GetCurrent: TBasicChartSeries;
begin
Result := TBasicChartSeries(inherited GetCurrent);
end;
{ TChart }
procedure TChart.AddSeries(ASeries: TBasicChartSeries);
begin
if ASeries.FChart = Self then exit;
if ASeries.FChart <> nil then
ASeries.FChart.DeleteSeries(ASeries);
HideReticule;
Series.FList.Add(ASeries);
ASeries.FChart := Self;
ASeries.AfterAdd;
StyleChanged(ASeries);
end;
procedure TChart.CalculateTransformationCoeffs(const AMargin, AChartMargins: TRect;
const AMinDataSpace: Integer);
var
rX, rY: TAxisCoeffHelper;
begin
rX.Init(
HorAxis, FClipRect.Left, FClipRect.Right, AMargin.Left, -AMargin.Right,
AChartMargins.Left, AChartMargins.Right, AMinDataSpace,
(AMargin.Left <> AChartMargins.Left) or (AMargin.Right <> AChartMargins.Right),
false, @FCurrentExtent.a.X, @FCurrentExtent.b.X);
rY.Init(
VertAxis, FClipRect.Bottom, FClipRect.Top, -AMargin.Bottom, AMargin.Top,
AChartMargins.Bottom, AChartMargins.Top, AMinDataSpace,
(AMargin.Top <> AChartMargins.Top) or (AMargin.Bottom <> AChartMargins.Bottom),
true, @FCurrentExtent.a.Y, @FCurrentExtent.b.Y);
FScale.X := rX.CalcScale(1);
FScale.Y := rY.CalcScale(-1);
if Proportional then begin
if Abs(FScale.X) > Abs(FScale.Y) then
FScale.X := Abs(FScale.Y) * Sign(FScale.X)
else
FScale.Y := Abs(FScale.X) * Sign(FScale.Y);
end;
FOffset.X := rX.CalcOffset(FScale.X);
FOffset.Y := rY.CalcOffset(FScale.Y);
rX.UpdateMinMax(@XImageToGraph);
rY.UpdateMinMax(@YImageToGraph);
end;
procedure TChart.Clear(ADrawer: IChartDrawer; const ARect: TRect);
var
defaultDrawing: Boolean = true;
ic: IChartTCanvasDrawer;
begin
ADrawer.PrepareSimplePen(Color);
ADrawer.SetBrushParams(bsSolid, Color);
if Assigned(FOnBeforeCustomDrawBackground) then
OnBeforeCustomDrawBackground(Self, ADrawer, ARect, defaultDrawing)
else
if Supports(ADrawer, IChartTCanvasDrawer, ic) and Assigned(OnBeforeDrawBackground) then
OnBeforeDrawBackground(Self, ic.Canvas, ARect, defaultDrawing);
if defaultDrawing then
ADrawer.FillRect(ARect.Left, ARect.Top, ARect.Right, ARect.Bottom);
// ADrawer.Rectangle(ARect);
if Assigned(OnAfterCustomDrawBackground) then
OnAfterCustomDrawBackground(Self, ADrawer, ARect);
if Supports(ADrawer, IChartTCanvasDrawer, ic) and Assigned(OnAfterDrawBackground) then
OnAfterDrawBackground(Self, ic.Canvas, ARect);
end;
procedure TChart.ClearSeries;
begin
FSeries.Clear;
StyleChanged(Self);
end;
function TChart.ClipRectWithoutFrame(AZPosition: TChartDistance): TRect;
begin
Result := FClipRect;
if (AZPosition > 0) or not Frame.EffVisible then exit;
Result.Left += (Frame.Width + 1) div 2;
Result.Top += (Frame.Width + 1) div 2;
Result.Bottom -= Frame.Width div 2;
Result.Right -= Frame.Width div 2;
end;
function TChart.Clone: TChart;
begin
Result := Clone(Owner, Parent);
end;
function TChart.Clone(ANewOwner, ANewParent: TComponent): TChart;
var
ms: TMemoryStream;
cloned: TComponent = nil;
begin
ms := TMemoryStream.Create;
try
WriteComponentToStream(ms, Self);
ms.Seek(0, soBeginning);
ReadComponentFromBinaryStream(
ms, cloned, @FindComponentClass, ANewOwner, ANewParent, Owner);
Result := cloned as TChart;
finally
ms.Free;
end;
end;
procedure TChart.CopyToClipboardBitmap;
begin
with SaveToImage(TBitmap) do
try
SaveToClipboardFormat(RegisterClipboardFormat(MimeType));
finally
Free;
end;
end;
constructor TChart.Create(AOwner: TComponent);
const
DEFAULT_CHART_WIDTH = 300;
DEFAULT_CHART_HEIGHT = 200;
DEFAULT_CHART_TITLE = 'TAChart';
FONT_VERTICAL = 900;
begin
inherited Create(AOwner);
FBroadcaster := TBroadcaster.Create;
FExtentBroadcaster := TBroadcaster.Create;
FAllowZoom := true;
FAntialiasingMode := amDontCare;
FAxisVisible := true;
FConnectorData.FCanvas := Canvas;
FDefaultGUIConnector := TChartGUIConnectorCanvas.Create(Self);
FDefaultGUIConnector.CreateDrawer(FConnectorData);
FGUIConnectorListener := TListener.Create(@FGUIConnector, @StyleChanged);
FScale := DoublePoint(1, 1);
Width := DEFAULT_CHART_WIDTH;
Height := DEFAULT_CHART_HEIGHT;
FReticulePos := Point(-1, -1);
FReticuleMode := rmNone;
FSeries := TChartSeriesList.Create;
Color := clBtnFace;
FBackColor := clBtnFace;
FIsZoomed := false;
FLegend := TChartLegend.Create(Self);
FTitle := TChartTitle.Create(Self);
FTitle.Alignment := taCenter;
FTitle.Text.Add(DEFAULT_CHART_TITLE);
FFoot := TChartTitle.Create(Self);
FAxisList := TChartAxisList.Create(Self);
FAxisList.OnVisitSources := @VisitSources;
with TChartAxis.Create(FAxisList) do begin
Alignment := calLeft;
Title.LabelFont.Orientation := FONT_VERTICAL;
end;
with TChartAxis.Create(FAxisList) do
Alignment := calBottom;
FFrame := TChartPen.Create;
FFrame.OnChange := @StyleChanged;
FExtent := TChartExtent.Create(Self);
FExtentSizeLimit := TChartExtent.Create(Self);
FMargins := TChartMargins.Create(Self);
FMarginsExternal := TChartMargins.Create(Self);
FMinDataSpace := DEF_MIN_DATA_SPACE;
if OnInitBuiltinTools <> nil then
FBuiltinToolset := OnInitBuiltinTools(Self);
FActiveToolIndex := -1;
FLogicalExtent := EmptyExtent;
FPrevLogicalExtent := EmptyExtent;
end;
procedure TChart.DeleteSeries(ASeries: TBasicChartSeries);
var
i: Integer;
begin
i := FSeries.FList.IndexOf(ASeries);
if i < 0 then exit;
FSeries.FList.Delete(i);
ASeries.FChart := nil;
StyleChanged(Self);
end;
destructor TChart.Destroy;
begin
FreeAndNil(FSeries);
FreeAndNil(FLegend);
FreeAndNil(FTitle);
FreeAndNil(FFoot);
FreeAndNil(FAxisList);
FreeAndNil(FFrame);
FreeAndNil(FGUIConnectorListener);
FreeAndNil(FExtent);
FreeAndNil(FExtentSizeLimit);
FreeAndNil(FMargins);
FreeAndNil(FMarginsExternal);
FreeAndNil(FBuiltinToolset);
FreeAndNil(FBroadcaster);
FreeAndNil(FExtentBroadcaster);
FreeAndNil(FDefaultGUIConnector);
DrawData.DeleteByChart(Self);
inherited;
end;
procedure TChart.DisableRedrawing;
begin
FDisableRedrawingCounter += 1;
end;
procedure TChart.DisplaySeries(ADrawer: IChartDrawer);
procedure OffsetDrawArea(ADX, ADY: Integer); inline;
begin
FOffset.X += ADX;
FOffset.Y += ADY;
OffsetRect(FClipRect, ADX, ADY);
end;
procedure OffsetWithDepth(AZPos, ADepth: Integer);
begin
AZPos := ADrawer.Scale(AZPos);
ADepth := ADrawer.Scale(ADepth);
OffsetDrawArea(-AZPos, AZPos);
FClipRect.Right += ADepth;
FClipRect.Top -= ADepth;
end;
procedure DrawOrDeactivate(
ASeries: TBasicChartSeries; ATransparency: TChartTransparency);
begin
try
ADrawer.SetTransparency(ATransparency);
ASeries.Draw(ADrawer);
except
ASeries.Active := false;
raise;
end;
end;
var
axisIndex: Integer;
seriesInZOrder: TChartSeriesList;
s: TBasicChartSeries;
begin
axisIndex := 0;
if SeriesCount > 0 then begin
seriesInZOrder := TChartSeriesList.Create;
try
seriesInZOrder.List.Assign(FSeries.List);
seriesInZOrder.List.Sort(@CompareZPosition);
for s in seriesInZOrder do begin
if not s.Active then continue;
// Interleave axises with series according to ZPosition.
if AxisVisible then
AxisList.Draw(s.ZPosition, axisIndex);
OffsetWithDepth(Min(s.ZPosition, Depth), Min(s.Depth, Depth));
ADrawer.ClippingStart(ClipRectWithoutFrame(s.ZPosition));
try
with s.Shadow do
if Visible then begin
OffsetDrawArea(OffsetX, OffsetY);
ADrawer.SetMonochromeColor(Color);
try
DrawOrDeactivate(s, Transparency);
finally
ADrawer.SetMonochromeColor(clTAColor);
OffsetDrawArea(-OffsetX, -OffsetY);
end;
end;
DrawOrDeactivate(s, s.Transparency);
finally
OffsetWithDepth(-Min(s.ZPosition, Depth), -Min(s.Depth, Depth));
ADrawer.ClippingStop;
end;
end;
finally
seriesInZOrder.List.Clear; // Avoid freeing series.
seriesInZOrder.Free;
ADrawer.SetTransparency(0);
end;
end;
if AxisVisible then
AxisList.Draw(MaxInt, axisIndex);
end;
procedure TChart.DoContextPopup(MousePos: TPoint; var Handled: Boolean);
begin
if FDisablePopupMenu then Handled := true;
inherited;
end;
function TChart.DoMouseWheel(
AShift: TShiftState; AWheelDelta: Integer; AMousePos: TPoint): Boolean;
const
EV: array [Boolean] of TChartToolEventId = (
evidMouseWheelDown, evidMouseWheelUp);
var
ts: TBasicChartToolset;
begin
ts := GetToolset;
if ts = nil then
result := false
else
Result := ts.Dispatch(Self, EV[AWheelDelta > 0], AShift, AMousePos) or
inherited DoMouseWheel(AShift, AWheelDelta, AMousePos);
end;
{$IFDEF LCLGtk2}
procedure TChart.DoOnResize;
begin
inherited;
// FIXME: GTK does not invalidate the control on resizing, do it manually
Invalidate;
end;
{$ENDIF}
procedure TChart.Draw(ADrawer: IChartDrawer; const ARect: TRect);
var
ldd: TChartLegendDrawingData;
s: TBasicChartSeries;
ts: TBasicChartToolset;
begin
Prepare;
ADrawer.SetRightToLeft(BiDiMode <> bdLeftToRight);
FClipRect := ARect;
with MarginsExternal do begin
FClipRect.Left += Left;
FClipRect.Top += Top;
FClipRect.Right -= Right;
FClipRect.Bottom -= Bottom;
end;
with ClipRect do begin
FTitle.Measure(ADrawer, 1, Left, Right, Top);
FFoot.Measure(ADrawer, -1, Left, Right, Bottom);
end;
ldd.FItems := nil;
if Legend.Visible then
ldd := PrepareLegend(ADrawer, FClipRect);
try
PrepareAxis(ADrawer);
if Legend.Visible and not Legend.UseSidebar then
Legend.Prepare(ldd, FClipRect);
// Avoid jitter of chart area while dragging with PanDragTool.
if FClipRectLock > 0 then
FClipRect := FSavedClipRect;
if (FPrevLogicalExtent <> FLogicalExtent) and Assigned(OnExtentChanging) then
OnExtentChanging(Self);
ADrawer.DrawingBegin(ARect);
ADrawer.SetAntialiasingMode(AntialiasingMode);
Clear(ADrawer, ARect);
FTitle.Draw(ADrawer);
FFoot.Draw(ADrawer);
DrawBackWall(ADrawer);
DisplaySeries(ADrawer);
if Legend.Visible then begin
if Assigned(FOnDrawLegend) then
FOnDrawlegend(Self, ldd.FDrawer, ldd.FItems, ldd.FItemSize, ldd.FBounds,
ldd.FColCount, ldd.FRowCount)
else
Legend.Draw(ldd);
end;
finally
ldd.FItems.Free;
end;
DrawReticule(ADrawer);
ts := GetToolset;
if ts <> nil then ts.Draw(Self, ADrawer);
for s in Series do
s.AfterDraw;
if Assigned(OnAfterDraw) then
OnAfterDraw(Self, ADrawer);
ADrawer.DrawingEnd;
if FPrevLogicalExtent <> FLogicalExtent then begin
FExtentBroadcaster.Broadcast(Self);
if Assigned(OnExtentChanged) then
OnExtentChanged(Self);
FPrevLogicalExtent := FLogicalExtent;
end;
// Undo changes made by the drawer (mainly for printing). The user may print
// something else after the chart and, for example, would not expect the font
// to be rotated (Fix for issue #0027163) or the pen to be in xor mode.
ADrawer.ResetFont;
ADrawer.SetXor(false);
ADrawer.PrepareSimplePen(clBlack); // resets canvas pen mode to pmCopy
ADrawer.SetPenParams(psSolid, clDefault);
ADrawer.SetBrushParams(bsSolid, clWhite);
ADrawer.SetAntialiasingMode(amDontCare);
end;
procedure TChart.DrawBackWall(ADrawer: IChartDrawer);
var
defaultDrawing: Boolean = true;
ic: IChartTCanvasDrawer;
scaled_depth: Integer;
begin
if Assigned(OnBeforeCustomDrawBackWall) then
OnBeforeCustomDrawBackWall(self, ADrawer, FClipRect, defaultDrawing)
else
if Supports(ADrawer, IChartTCanvasDrawer, ic) and Assigned(OnBeforeDrawBackWall) then
OnBeforeDrawBackWall(Self, ic.Canvas, FClipRect, defaultDrawing);
if defaultDrawing then
with ADrawer do begin
if FFrame.Visible then
Pen := FFrame
else
SetPenParams(psClear, clTAColor);
SetBrushParams(bsSolid, BackColor);
with FClipRect do
Rectangle(Left, Top, Right + 1, Bottom + 1);
end;
if Assigned(OnAfterCustomDrawBackWall) then
OnAfterCustomDrawBackwall(Self, Drawer, FClipRect);
if Supports(ADrawer, IChartTCanvasDrawer, ic) and Assigned(OnAfterDrawBackWall) then
OnAfterDrawBackWall(Self, ic.Canvas, FClipRect);
// Z axis
if (Depth > 0) and FFrame.Visible then begin
scaled_depth := ADrawer.Scale(Depth);
ADrawer.Pen := FFrame;
with FClipRect do
ADrawer.Line(Left, Bottom, Left - scaled_depth, Bottom + scaled_depth);
end;
end;
procedure TChart.DrawLegendOn(ACanvas: TCanvas; var ARect: TRect);
var
ldd: TChartLegendDrawingData;
begin
ldd := PrepareLegend(TCanvasDrawer.Create(ACanvas), ARect);
try
Legend.Draw(ldd);
finally
ldd.FItems.Free;
end;
end;
procedure TChart.DrawLineHoriz(ADrawer: IChartDrawer; AY: Integer);
begin
if (FClipRect.Top < AY) and (AY < FClipRect.Bottom) then
ADrawer.Line(FClipRect.Left, AY, FClipRect.Right, AY);
end;
procedure TChart.DrawLineVert(ADrawer: IChartDrawer; AX: Integer);
begin
if (FClipRect.Left < AX) and (AX < FClipRect.Right) then
ADrawer.Line(AX, FClipRect.Top, AX, FClipRect.Bottom);
end;
procedure TChart.DrawReticule(ADrawer: IChartDrawer);
begin
ADrawer.SetXor(true);
ADrawer.PrepareSimplePen(clTAColor);
if ReticuleMode in [rmVertical, rmCross] then
DrawLineVert(ADrawer, FReticulePos.X);
if ReticuleMode in [rmHorizontal, rmCross] then
DrawLineHoriz(ADrawer, FReticulePos.Y);
ADrawer.SetXor(false);
end;
function TChart.EffectiveGUIConnector: TChartGUIConnector;
begin
Result := TChartGUIConnector(
IfThen(FGUIConnector = nil, FDefaultGUIConnector, FGUIConnector));
end;
procedure TChart.EnableRedrawing;
begin
FDisableRedrawingCounter -= 1;
end;
procedure TChart.EraseBackground(DC: HDC);
begin
// do not erase, since we will paint over it anyway
Unused(DC);
end;
procedure TChart.FindComponentClass(
AReader: TReader; const AClassName: String; var AClass: TComponentClass);
var
i: Integer;
begin
Unused(AReader);
if AClassName = ClassName then begin
AClass := TChart;
exit;
end;
for i := 0 to SeriesClassRegistry.Count - 1 do begin
AClass := TSeriesClass(SeriesClassRegistry.GetClass(i));
if AClass.ClassNameIs(AClassName) then exit;
end;
AClass := nil;
end;
function TChart.GetAxisBounds(AAxis: TChartAxis): TDoubleInterval;
var
s: TBasicChartSeries;
mn, mx: Double;
begin
Result.FStart := SafeInfinity;
Result.FEnd := NegInfinity;
for s in Series do
if s.Active and s.GetAxisBounds(AAxis, mn, mx) then begin
Result.FStart := Min(Result.FStart, mn);
Result.FEnd := Max(Result.FEnd, mx);
end;
end;
function TChart.GetAxisByAlign(AAlign: TChartAxisAlignment): TChartAxis;
begin
if (BidiMode <> bdLeftToRight) then
case AAlign of
calLeft: AAlign := calRight;
calRight: AAlign := calLeft;
end;
Result := FAxisList.GetAxisByAlign(AAlign);
end;
function TChart.GetChartHeight: Integer;
begin
Result := FClipRect.Bottom - FClipRect.Top;
end;
function TChart.GetChartWidth: Integer;
begin
Result := FClipRect.Right - FClipRect.Left;
end;
procedure TChart.GetChildren(AProc: TGetChildProc; ARoot: TComponent);
var
s: TBasicChartSeries;
begin
// FIXME: This is a workaround for issue #16035
if FSeries = nil then exit;
for s in Series do
if s.Owner = ARoot then
AProc(s);
end;
function TChart.GetFullExtent: TDoubleRect;
procedure SetBounds(
var ALo, AHi: Double; AMin, AMax: Double; AUseMin, AUseMax: Boolean);
const
DEFAULT_WIDTH = 2.0;
begin
if AUseMin then ALo := AMin;
if AUseMax then AHi := AMax;
case CASE_OF_TWO[IsInfinite(ALo), IsInfinite(AHi)] of
cotNone: begin // Both high and low boundary defined
if ALo = AHi then begin
ALo -= DEFAULT_WIDTH / 2;
AHi += DEFAULT_WIDTH / 2;
end
else begin
EnsureOrder(ALo, AHi);
// Expand view slightly to avoid data points on the chart edge.
ExpandRange(ALo, AHi, ExpandPercentage * PERCENT);
end;
end;
cotFirst: ALo := AHi - DEFAULT_WIDTH;
cotSecond: AHi := ALo + DEFAULT_WIDTH;
cotBoth: begin // No boundaries defined, take some arbitrary values
ALo := -DEFAULT_WIDTH / 2;
AHi := DEFAULT_WIDTH / 2;
end;
end;
end;
procedure JoinBounds(const ABounds: TDoubleRect);
begin
with Result do begin
a.X := Min(a.X, ABounds.a.X);
b.X := Max(b.X, ABounds.b.X);
a.Y := Min(a.Y, ABounds.a.Y);
b.Y := Max(b.Y, ABounds.b.Y);
end;
end;
var
axisBounds: TDoubleRect;
s: TBasicChartSeries;
a: TChartAxis;
begin
//Extent.CheckBoundsOrder;
// wp: avoid exception in IDE if min > max, but silently bring min/max
// into correct order
for a in AxisList do
if a.Transformations <> nil then
a.Transformations.ClearBounds;
Result := EmptyExtent;
for s in Series do begin
try
JoinBounds(s.GetGraphBounds);
except
s.Active := false;
raise;
end;
end;
for a in AxisList do begin
axisBounds := EmptyExtent;
if a.Range.UseMin then
TDoublePointBoolArr(axisBounds.a)[a.IsVertical] :=
a.GetTransform.AxisToGraph(a.Range.Min);
if a.Range.UseMax then
TDoublePointBoolArr(axisBounds.b)[a.IsVertical] :=
a.GetTransform.AxisToGraph(a.Range.Max);
JoinBounds(axisBounds);
end;
with Extent do begin
SetBounds(Result.a.X, Result.b.X, XMin, XMax, UseXMin, UseXMax);
SetBounds(Result.a.Y, Result.b.Y, YMin, YMax, UseYMin, UseYMax);
end;
end;
function TChart.GetHorAxis: TChartAxis;
begin
Result := BottomAxis;
if Result = nil then Result := GetAxisByAlign(calTop);
end;
function TChart.GetLegendItems(AIncludeHidden: Boolean): TChartLegendItems;
var
s: TBasicChartSeries;
begin
Result := TChartLegendItems.Create;
try
for s in Series do
if AIncludeHidden or (s.Active and s.GetShowInLegend) then
try
s.GetLegendItemsBasic(Result);
except
s.SetShowInLegend(AIncludeHidden);
raise;
end;
except
FreeAndNil(Result);
raise;
end;
end;
function TChart.GetMargins(ADrawer: IChartDrawer): TRect;
var
i: Integer;
a: TRectArray absolute Result;
s: TBasicChartSeries;
begin
Result := ZeroRect;
for s in Series do
if s.Active then
s.UpdateMargins(ADrawer, Result);
for i := Low(a) to High(a) do
a[i] := a[i] + ADrawer.Scale(TRectArray(Margins.Data)[i]);
end;
function TChart.GetRenderingParams: TChartRenderingParams;
begin
Result.FScale := FScale;
Result.FOffset := FOffset;
Result.FClipRect := FClipRect;
Result.FLogicalExtent := FLogicalExtent;
Result.FPrevLogicalExtent := FPrevLogicalExtent;
Result.FIsZoomed := FIsZoomed;
end;
function TChart.GetSeriesCount: Integer;
begin
Result := FSeries.FList.Count;
end;
function TChart.GetToolset: TBasicChartToolset;
begin
Result := FToolset;
if Result = nil then
Result := FBuiltinToolset;
end;
function TChart.GetVertAxis: TChartAxis;
begin
Result := LeftAxis;
if Result = nil then Result := GetAxisByAlign(calRight);
end;
function TChart.GraphToImage(const AGraphPoint: TDoublePoint): TPoint;
begin
Result := Point(XGraphToImage(AGraphPoint.X), YGraphToImage(AGraphPoint.Y));
end;
procedure TChart.HideReticule;
begin
// Hide reticule - - it will be drawn again in the next MouseMove.
FReticulePos := Point( - 1, - 1);
end;
function TChart.ImageToGraph(const APoint: TPoint): TDoublePoint;
begin
Result.X := XImageToGraph(APoint.X);
Result.Y := YImageToGraph(APoint.Y);
end;
function TChart.IsPointInViewPort(const AP: TDoublePoint): Boolean;
begin
Result :=
not IsNan(AP) and
SafeInRangeWithBounds(AP.X, XGraphMin, XGraphMax) and
SafeInRangeWithBounds(AP.Y, YGraphMin, YGraphMax);
end;
procedure TChart.KeyDownAfterInterface(var AKey: Word; AShift: TShiftState);
var
p: TPoint;
ts: TBasicChartToolset;
begin
p := ScreenToClient(Mouse.CursorPos);
ts := GetToolset;
if (ts <> nil) and ts.Dispatch(Self, evidKeyDown, AShift, p) then exit;
inherited;
end;
procedure TChart.KeyUpAfterInterface(var AKey: Word; AShift: TShiftState);
var
p: TPoint;
ts: TBasicChartToolset;
begin
p := ScreenToClient(Mouse.CursorPos);
// To find a tool, toolset must see the shift state with the key still down.
case AKey of
VK_CONTROL: AShift += [ssCtrl];
VK_MENU: AShift += [ssAlt];
VK_SHIFT: AShift += [ssShift];
end;
ts := GetToolset;
if (ts <> nil) and ts.Dispatch(Self, evidKeyUp, AShift, p) then exit;
inherited;
end;
procedure TChart.LockClipRect;
begin
FSavedClipRect := FClipRect;
inc(FClipRectLock);
end;
procedure TChart.MouseDown(
Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
var
ts: TBasicChartToolset;
begin
ts := GetToolset;
if
PtInRect(FClipRect, Point(X, Y)) and
(ts <> nil) and ts.Dispatch(Self, evidMouseDown, Shift, Point(X, Y))
then
exit;
inherited;
end;
procedure TChart.MouseMove(Shift: TShiftState; X, Y: Integer);
var
ts: TBasicChartToolset;
begin
if AutoFocus then
SetFocus;
ts := GetToolset;
if (ts <> nil) and ts.Dispatch(Self, evidMouseMove, Shift, Point(X, Y)) then
exit;
inherited;
end;
procedure TChart.MouseUp(
AButton: TMouseButton; AShift: TShiftState; AX, AY: Integer);
const
MOUSE_BUTTON_TO_SHIFT: array [TMouseButton] of TShiftStateEnum = (
ssLeft, ssRight, ssMiddle, ssExtra1, ssExtra2);
var
ts: TBasicChartToolset;
begin
// To find a tool, toolset must see the shift state with the button still down.
Include(AShift, MOUSE_BUTTON_TO_SHIFT[AButton]);
ts := GetToolset;
if (ts <> nil) and ts.Dispatch(Self, evidMouseUp, AShift, Point(AX, AY)) then
exit;
inherited;
end;
procedure TChart.Notification(AComponent: TComponent; AOperation: TOperation);
var
ax: TChartAxis;
begin
if (AOperation = opRemove) and (AComponent = Toolset) then
FToolset := nil
else if (AOperation = opRemove) and (AComponent = GUIConnector) then
GUIConnector := nil
else if (AOperation = opRemove) and (AComponent is TChartStyles) then begin
for ax in FAxisList do
if ax.Marks.Stripes = AComponent then
ax.Marks.Stripes := nil;
end;
inherited Notification(AComponent, AOperation);
end;
{ Notifies the chart of something which is specified by ACommand and both
parameters. Needed for example by the axis to query the extent covered by
all series using this axis (cannot be called directly because TAChartAxis
does not "use" TACustomSeries. }
procedure TChart.Notify(ACommand: Integer; AParam1, AParam2: Pointer; var AData);
begin
UnUsed(AParam2);
case ACommand of
CMD_QUERY_SERIESEXTENT:
TDoubleInterval(AData) := GetAxisBounds(TChartAxis(AParam1));
end;
end;
procedure TChart.Paint;
var
defaultDrawing: Boolean = true;
begin
FConnectorData.FBounds := GetClientRect;
{$WARNINGS OFF}
if Assigned(OnChartPaint) then
OnChartPaint(Self, FConnectorData.FBounds, defaultDrawing);
{$WARNINGS ON}
if defaultDrawing then
with EffectiveGUIConnector do begin
SetBounds(FConnectorData);
Draw(Drawer, FConnectorData.FDrawerBounds);
EffectiveGUIConnector.Display(FConnectorData);
end;
if Assigned(OnAfterPaint) then
OnAfterPaint(Self);
end;
procedure TChart.PaintOnAuxCanvas(ACanvas: TCanvas; ARect: TRect);
var
rp: TChartRenderingParams;
begin
rp := RenderingParams;
ExtentBroadcaster.Locked := true;
try
FIsZoomed := false;
PaintOnCanvas(ACanvas, ARect);
finally
RenderingParams := rp;
ExtentBroadcaster.Locked := false;
end;
end;
procedure TChart.PaintOnCanvas(ACanvas: TCanvas; ARect: TRect);
begin
Draw(TCanvasDrawer.Create(ACanvas), ARect);
end;
procedure TChart.PrepareAxis(ADrawer: IChartDrawer);
var
axisMargin: TChartAxisMargins;
aa: TChartAxisAlignment;
cr: TRect;
tries: Integer;
prevExt: TDoubleRect;
axis: TChartAxis;
scDepth: Integer;
scSeriesMargins: TRect;
scChartMargins: TRect;
scMinDataSpace: Integer;
begin
scDepth := ADrawer.Scale(Depth);
scSeriesMargins := GetMargins(ADrawer);
scChartMargins.Left := ADrawer.Scale(Margins.Left);
scChartMargins.Right := ADrawer.Scale(Margins.Right);
scChartMargins.Top := ADrawer.Scale(Margins.Top);
scChartMargins.Bottom := ADrawer.Scale(Margins.Bottom);
scMinDataSpace := ADrawer.Scale(FMinDataSpace);
if not AxisVisible then begin
FClipRect.Left += scDepth;
FClipRect.Bottom -= scDepth;
CalculateTransformationCoeffs(scSeriesMargins, scChartMargins, scMinDataSpace);
exit;
end;
AxisList.PrepareGroups;
for axis in AxisList do
axis.PrepareHelper(ADrawer, Self, @FClipRect, scDepth);
// There is a cyclic dependency: extent -> visible marks -> margins.
// We recalculate them iteratively hoping that the process converges.
CalculateTransformationCoeffs(ZeroRect, scChartMargins, scMinDataSpace);
cr := FClipRect;
for tries := 1 to 10 do begin
axisMargin := AxisList.Measure(CurrentExtent, scDepth);
axisMargin[calLeft] := Max(axisMargin[calLeft], scDepth);
axisMargin[calBottom] := Max(axisMargin[calBottom], scDepth);
FClipRect := cr;
for aa := Low(aa) to High(aa) do
SideByAlignment(FClipRect, aa, -axisMargin[aa]);
prevExt := FCurrentExtent;
FCurrentExtent := FLogicalExtent;
CalculateTransformationCoeffs(scSeriesMargins, scChartMargins, scMinDataSpace);
if prevExt = FCurrentExtent then break;
prevExt := FCurrentExtent;
end;
AxisList.Prepare(FClipRect);
end;
procedure TChart.Prepare;
var
a: TChartAxis;
s: TBasicChartSeries;
begin
for a in AxisList do
if a.Transformations <> nil then
a.Transformations.SetChart(Self);
for s in Series do
s.BeforeDraw;
if not FIsZoomed then
FLogicalExtent := GetFullExtent;
FCurrentExtent := FLogicalExtent;
end;
function TChart.PrepareLegend(
ADrawer: IChartDrawer; var AClipRect: TRect): TChartLegendDrawingData;
begin
Result.FDrawer := ADrawer;
Result.FItems := GetLegendItems;
try
Legend.SortItemsByOrder(Result.FItems);
Legend.AddGroups(Result.FItems);
Legend.Prepare(Result, AClipRect);
except
FreeAndNil(Result.FItems);
raise;
end;
end;
procedure TChart.RemoveSeries(ASeries: TBasicChartSeries);
begin
DeleteSeries(ASeries);
end;
procedure TChart.SaveToBitmapFile(const AFileName: String);
begin
SaveToFile(TBitmap, AFileName);
end;
procedure TChart.SaveToFile(AClass: TRasterImageClass; AFileName: String);
begin
with SaveToImage(AClass) do
try
SaveToFile(AFileName);
finally
Free;
end;
end;
function TChart.SaveToImage(AClass: TRasterImageClass): TRasterImage;
begin
Result := AClass.Create;
try
Result.Width := Width;
Result.Height := Height;
PaintOnCanvas(Result.Canvas, Rect(0, 0, Width, Height));
except
Result.Free;
raise;
end;
end;
procedure TChart.SetAntialiasingMode(AValue: TChartAntialiasingMode);
begin
if FAntialiasingMode = AValue then exit;
FAntialiasingMode := AValue;
StyleChanged(Self);
end;
procedure TChart.SetAxisByAlign(AAlign: TChartAxisAlignment; AValue: TChartAxis);
begin
FAxisList.SetAxisByAlign(AAlign, AValue);
StyleChanged(AValue);
end;
procedure TChart.SetAxisList(AValue: TChartAxisList);
begin
FAxisList.Assign(AValue);
StyleChanged(Self);
end;
procedure TChart.SetAxisVisible(Value: Boolean);
begin
FAxisVisible := Value;
StyleChanged(Self);
end;
procedure TChart.SetBackColor(AValue: TColor);
begin
FBackColor:= AValue;
StyleChanged(Self);
end;
procedure TChart.SetBiDiMode(AValue: TBiDiMode);
begin
if AValue = BidiMode then
exit;
inherited SetBiDiMode(AValue);
if not (csLoading in ComponentState) then begin
AxisList.UpdateBidiMode;
Legend.UpdateBidiMode;
Title.UpdateBidiMode;
Foot.UpdateBidiMode;
Series.UpdateBiDiMode;
end;
end;
procedure TChart.SetChildOrder(Child: TComponent; Order: Integer);
var
i: Integer;
begin
i := Series.FList.IndexOf(Child);
if i >= 0 then
Series.FList.Move(i, Order);
end;
procedure TChart.SetDepth(AValue: TChartDistance);
begin
if FDepth = AValue then exit;
FDepth := AValue;
StyleChanged(Self);
end;
procedure TChart.SetExpandPercentage(AValue: Integer);
begin
if FExpandPercentage = AValue then exit;
FExpandPercentage := AValue;
StyleChanged(Self);
end;
procedure TChart.SetExtent(AValue: TChartExtent);
begin
FExtent.Assign(AValue);
StyleChanged(Self);
end;
procedure TChart.SetExtentSizeLimit(AValue: TChartExtent);
begin
if FExtentSizeLimit = AValue then exit;
FExtentSizeLimit.Assign(AValue);
StyleChanged(Self);
end;
procedure TChart.SetFoot(Value: TChartTitle);
begin
FFoot.Assign(Value);
StyleChanged(Self);
end;
procedure TChart.SetFrame(Value: TChartPen);
begin
FFrame.Assign(Value);
StyleChanged(Self);
end;
procedure TChart.SetGUIConnector(AValue: TChartGUIConnector);
begin
if FGUIConnector = AValue then exit;
if FGUIConnector <> nil then
RemoveFreeNotification(FGUIConnector);
if FGUIConnectorListener.IsListening then
FGUIConnector.Broadcaster.Unsubscribe(FGUIConnectorListener);
FGUIConnector := AValue;
if FGUIConnector <> nil then begin
FGUIConnector.Broadcaster.Subscribe(FGUIConnectorListener);
FreeNotification(FGUIConnector);
end;
EffectiveGUIConnector.CreateDrawer(FConnectorData);
StyleChanged(Self);
end;
procedure TChart.SetLegend(Value: TChartLegend);
begin
FLegend.Assign(Value);
StyleChanged(Self);
end;
procedure TChart.SetLogicalExtent(const AValue: TDoubleRect);
var
w, h: Double;
begin
if FLogicalExtent = AValue then exit;
w := Abs(AValue.a.X - AValue.b.X);
h := Abs(AValue.a.Y - AValue.b.Y);
with ExtentSizeLimit do
if
UseXMin and (w < XMin) or UseXMax and (w > XMax) or
UseYMin and (h < YMin) or UseYMax and (h > YMax)
then
exit;
HideReticule;
FLogicalExtent := AValue;
FIsZoomed := true;
StyleChanged(Self);
end;
procedure TChart.SetMargins(AValue: TChartMargins);
begin
FMargins.Assign(AValue);
StyleChanged(Self);
end;
procedure TChart.SetMarginsExternal(AValue: TChartMargins);
begin
if FMarginsExternal = AValue then exit;
FMarginsExternal.Assign(AValue);
StyleChanged(Self);
end;
procedure TChart.SetMinDataSpace(const AValue: Integer);
begin
if FMinDataSpace = abs(AValue) then exit;
FMinDataSpace := abs(AValue);
StyleChanged(Self);
end;
procedure TChart.SetName(const AValue: TComponentName);
var
oldName: String;
begin
if Name = AValue then exit;
oldName := Name;
inherited SetName(AValue);
if csDesigning in ComponentState then
Series.List.ChangeNamePrefix(oldName, AValue);
end;
procedure TChart.SetOnAfterDraw(AValue: TChartDrawEvent);
begin
if TMethod(FOnAfterDraw) = TMethod(AValue) then exit;
FOnAfterDraw := AValue;
StyleChanged(Self);
end;
procedure TChart.SetOnAfterCustomDrawBackground(AValue: TChartAfterCustomDrawEvent);
begin
if TMethod(FOnAfterCustomDrawBackground) = TMethod(AValue) then exit;
FOnAfterCustomDrawBackground := AValue;
StyleChanged(Self);
end;
procedure TChart.SetOnAfterCustomDrawBackWall(AValue: TChartAfterCustomDrawEvent);
begin
if TMethod(FOnAfterCustomDrawBackWall) = TMethod(AValue) then exit;
FOnAfterCustomDrawBackWall := AValue;
StyleChanged(Self);
end;
procedure TChart.SetOnAfterDrawBackground(AValue: TChartAfterDrawEvent);
begin
if TMethod(FOnAfterDrawBackground) = TMethod(AValue) then exit;
FOnAfterDrawBackground := AValue;
StyleChanged(Self);
end;
procedure TChart.SetOnAfterDrawBackWall(AValue: TChartAfterDrawEvent);
begin
if TMethod(FOnAfterDrawBackWall) = TMethod(AValue) then exit;
FOnAfterDrawBackWall := AValue;
StyleChanged(Self);
end;
procedure TChart.SetOnBeforeCustomDrawBackground(AValue: TChartBeforeCustomDrawEvent);
begin
if TMethod(FOnBeforeCustomDrawBackground) = TMethod(AValue) then exit;
FOnBeforeCustomDrawBackground := AValue;
StyleChanged(Self);
end;
procedure TChart.SetOnBeforeCustomDrawBackWall(AValue: TChartBeforeCustomDrawEvent);
begin
if TMethod(FOnBeforeCustomDrawBackWall) = TMethod(AValue) then exit;
FOnBeforeCustomDrawBackWall := AValue;
StyleChanged(Self);
end;
procedure TChart.SetOnBeforeDrawBackground(AValue: TChartBeforeDrawEvent);
begin
if TMethod(FOnBeforeDrawBackground) = TMethod(AValue) then exit;
FOnBeforeDrawBackground := AValue;
StyleChanged(Self);
end;
procedure TChart.SetOnBeforeDrawBackWall(AValue: TChartBeforeDrawEvent);
begin
if TMethod(FOnBeforeDrawBackWall) = TMethod(AValue) then exit;
FOnBeforeDrawBackWall := AValue;
StyleChanged(Self);
end;
procedure TChart.SetOnChartPaint(AValue: TChartPaintEvent);
begin
if TMethod(FOnChartPaint) = TMethod(AValue) then exit;
FOnChartPaint := AValue;
StyleChanged(Self);
end;
procedure TChart.SetOnDrawLegend(AValue: TChartDrawLegendEvent);
begin
if TMethod(FOnDrawLegend) = TMethod(AValue) then exit;
FOnDrawLegend := AValue;
StyleChanged(self);
end;
procedure TChart.SetOnDrawReticule(AValue: TDrawReticuleEvent);
begin
if TMethod(FOnDrawReticule) = TMethod(AValue) then exit;
FOnDrawReticule := AValue;
StyleChanged(Self);
end;
procedure TChart.SetProportional(AValue: Boolean);
begin
if FProportional = AValue then exit;
FProportional := AValue;
StyleChanged(Self);
end;
procedure TChart.SetRenderingParams(AValue: TChartRenderingParams);
begin
FScale := AValue.FScale;
FOffset := AValue.FOffset;
FClipRect := AValue.FClipRect;
FLogicalExtent := AValue.FLogicalExtent;
FPrevLogicalExtent := AValue.FPrevLogicalExtent;
FIsZoomed := AValue.FIsZoomed;
end;
procedure TChart.SetReticuleMode(AValue: TReticuleMode);
begin
if FReticuleMode = AValue then exit;
FReticuleMode := AValue;
StyleChanged(Self);
end;
procedure TChart.SetReticulePos(const AValue: TPoint);
begin
if FReticulePos = AValue then exit;
DrawReticule(Drawer);
FReticulePos := AValue;
DrawReticule(Drawer);
end;
procedure TChart.SetTitle(Value: TChartTitle);
begin
FTitle.Assign(Value);
StyleChanged(Self);
end;
procedure TChart.SetToolset(AValue: TBasicChartToolset);
begin
if FToolset = AValue then exit;
if FToolset <> nil then
RemoveFreeNotification(FToolset);
FToolset := AValue;
FActiveToolIndex := -1;
if FToolset <> nil then
FreeNotification(FToolset);
end;
procedure TChart.StyleChanged(Sender: TObject);
begin
if FDisableRedrawingCounter > 0 then exit;
if Sender is TChartExtent then
ZoomFull;
Invalidate;
Broadcaster.Broadcast(Sender);
end;
procedure TChart.UnlockCliprect;
begin
dec(FClipRectLock);
if FClipRectLock = 0 then Invalidate;
end;
procedure TChart.VisitSources(
AVisitor: TChartOnSourceVisitor; AAxis: TChartAxis; var AData);
var
s: TBasicChartSeries;
begin
for s in Series do
if s.Active then
s.VisitSources(AVisitor, AAxis, AData);
end;
function TChart.XGraphToImage(AX: Double): Integer;
begin
Result := ImgRoundChecked(FScale.X * AX + FOffset.X);
end;
function TChart.XImageToGraph(AX: Integer): Double;
begin
Result := (AX - FOffset.X) / FScale.X;
end;
function TChart.YGraphToImage(AY: Double): Integer;
begin
Result := ImgRoundChecked(FScale.Y * AY + FOffset.Y);
end;
function TChart.YImageToGraph(AY: Integer): Double;
begin
Result := (AY - FOffset.Y) / FScale.Y;
end;
procedure TChart.ZoomFull(AImmediateRecalc: Boolean);
begin
if AImmediateRecalc then
FLogicalExtent := GetFullExtent;
if not FIsZoomed then exit;
HideReticule;
FIsZoomed := false;
Invalidate;
end;
{ TBasicChartSeries }
procedure TBasicChartSeries.AfterDraw;
begin
// empty
end;
procedure TBasicChartSeries.Assign(Source: TPersistent);
begin
if Source is TBasicChartSeries then
with TBasicChartSeries(Source) do begin
Self.FActive := FActive;
Self.FDepth := FDepth;
Self.FZPosition := FZPosition;
end;
end;
function TBasicChartSeries.AxisToGraphX(AX: Double): Double;
begin
Result := AX;
end;
function TBasicChartSeries.AxisToGraphY(AY: Double): Double;
begin
Result := AY;
end;
procedure TBasicChartSeries.BeforeDraw;
begin
// empty
end;
destructor TBasicChartSeries.Destroy;
begin
if FChart <> nil then
FChart.DeleteSeries(Self);
inherited;
end;
function TBasicChartSeries.GraphToAxisX(AX: Double): Double;
begin
Result := AX;
end;
function TBasicChartSeries.GraphToAxisY(AY: Double): Double;
begin
Result := AY;
end;
procedure TBasicChartSeries.MovePoint(
var AIndex: Integer; const ANewPos: TDoublePoint);
begin
Unused(AIndex, ANewPos)
end;
procedure TBasicChartSeries.MovePoint(
var AIndex: Integer; const ANewPos: TPoint);
begin
MovePoint(AIndex, FChart.ImageToGraph(ANewPos));
end;
procedure TBasicChartSeries.MovePointEx(
var AIndex: Integer; AXIndex, AYIndex: Integer; const ANewPos: TDoublePoint);
begin
Unused(AXIndex, AYIndex);
MovePoint(AIndex, ANewPos);
end;
procedure TBasicChartSeries.UpdateBiDiMode;
begin
// normally nothing to do. Override, e.g., to flip arrows
end;
procedure TBasicChartSeries.UpdateMargins(
ADrawer: IChartDrawer; var AMargins: TRect);
begin
Unused(ADrawer, AMargins);
end;
procedure TBasicChartSeries.VisitSources(
AVisitor: TChartOnSourceVisitor; AAxis: TChartAxis; var AData);
begin
Unused(AVisitor, AAxis);
Unused(AData);
end;
{ TChartSeriesList }
procedure TChartSeriesList.Clear;
var
i: Integer;
begin
if FList.Count > 0 then
Items[0].FChart.StyleChanged(Items[0].FChart);
for i := 0 to FList.Count - 1 do begin
Items[i].FChart := nil;
Items[i].Free;
end;
FList.Clear;
end;
function TChartSeriesList.Count: Integer;
begin
Result := FList.Count;
end;
constructor TChartSeriesList.Create;
begin
FList := TIndexedComponentList.Create;
end;
destructor TChartSeriesList.Destroy;
begin
Clear;
FreeAndNil(FList);
inherited;
end;
function TChartSeriesList.GetEnumerator: TBasicChartSeriesEnumerator;
begin
Result := TBasicChartSeriesEnumerator.Create(FList);
end;
function TChartSeriesList.GetItem(AIndex: Integer): TBasicChartSeries;
begin
Result := TBasicChartSeries(FList.Items[AIndex]);
end;
procedure TChartSeriesList.UpdateBiDiMode;
var
s: TBasicChartseries;
begin
for s in self do
s.UpdateBiDiMode;
end;
{ TBasicChartTool }
procedure TBasicChartTool.Activate;
begin
FChart.FActiveToolIndex := Index;
FChart.MouseCapture := true;
FChart.FDisablePopupMenu := false;
FStartMousePos := Mouse.CursorPos;
end;
procedure TBasicChartTool.Deactivate;
begin
FChart.MouseCapture := false;
FChart.FActiveToolIndex := -1;
if PopupMenuConflict then
FChart.FDisablePopupMenu := true;
end;
function TBasicChartTool.PopupMenuConflict: Boolean;
begin
Result := false;
end;
procedure SkipObsoleteChartProperties;
const
MIRRORX_NOTE = 'Obsolete, use BottomAxis.Invert instead';
AXIS_COLOR_NOTE = 'Obsolete, use Axis.TickColor instead';
ANGLE_NOTE = 'Obsolete, use Font.Orientation instead';
NOTE = 'Obsolete, use Extent instead';
NAMES: array [1..4] of String = (
'XGraph', 'YGraph', 'AutoUpdateX', 'AutoUpdateY');
var
i: Integer;
begin
RegisterPropertyToSkip(TChart, 'MirrorX', MIRRORX_NOTE, '');
RegisterPropertyToSkip(TChart, 'AxisColor', AXIS_COLOR_NOTE, '');
RegisterPropertyToSkip(TChartAxisTitle, 'Angle', ANGLE_NOTE, '');
for i := 1 to High(NAMES) do begin
RegisterPropertyToSkip(TChart, NAMES[i] + 'Min', NOTE, '');
RegisterPropertyToSkip(TChart, NAMES[i] + 'Max', NOTE, '');
end;
end;
initialization
SkipObsoleteChartProperties;
SeriesClassRegistry := TClassRegistry.Create;
ShowMessageProc := @ShowMessage;
finalization
FreeAndNil(SeriesClassRegistry);
end.
|