Mercurial > hg > octave-jordi
comparison doc/interpreter/plot.txi @ 8257:79c874fe5100
More plot object updates
author | David Bateman <dbateman@free.fr> |
---|---|
date | Wed, 22 Oct 2008 04:30:17 +0100 |
parents | 0ec09255515a |
children | 2b408bbd8904 |
comparison
equal
deleted
inserted
replaced
8256:dba0037e6602 | 8257:79c874fe5100 |
---|---|
1714 @node Line series | 1714 @node Line series |
1715 @subsubsection Line series | 1715 @subsubsection Line series |
1716 @cindex series objects | 1716 @cindex series objects |
1717 @cindex line series | 1717 @cindex line series |
1718 | 1718 |
1719 line series objects are created by the @code{plot} and @code{plot3} | 1719 Line series objects are created by the @code{plot} and @code{plot3} |
1720 functions. Each @code{hggroup} element of the series contains a single | 1720 functions and are of the type @code{line}. The properties of the |
1721 line object as a child representing the stair. The properties of the | 1721 line series with the ability to add data sources. |
1722 line series are a one-to-one reflection of the children line object, and | |
1723 so the line series is only useful for its ability to add data sources to | |
1724 the group object. | |
1725 | |
1726 The properties of the line series are | |
1727 | 1722 |
1728 @table @code | 1723 @table @code |
1729 @item color | 1724 @item color |
1730 The RGB color or color name of the line objects of the stairs. @xref{Colors}. | 1725 The RGB color or color name of the line objects. @xref{Colors}. |
1731 | 1726 |
1732 @item linewidth | 1727 @item linewidth |
1733 @itemx linestyle | 1728 @itemx linestyle |
1734 The line width and style of the line objects of the stairs. @xref{Line Styles}. | 1729 The line width and style of the line objects. @xref{Line Styles}. |
1735 | 1730 |
1736 @item marker | 1731 @item marker |
1737 @itemx markeredgecolor | 1732 @itemx markeredgecolor |
1738 @itemx markerfacecolor | 1733 @itemx markerfacecolor |
1739 @itemx markersize | 1734 @itemx markersize |
1740 The line and fill color of the markers on the stairs. @xref{Colors}. | 1735 The line and fill color of the markers. @xref{Colors}. |
1741 | 1736 |
1742 @item xdata | 1737 @item xdata |
1743 @itemx ydata | 1738 @itemx ydata |
1744 @itemx zdata | 1739 @itemx zdata |
1745 The original x, y and z data of the stairs. | 1740 The original x, y and z data. |
1746 | 1741 |
1747 @item xdatasource | 1742 @item xdatasource |
1748 @itemx ydatasource | 1743 @itemx ydatasource |
1749 @itemx zdatasource | 1744 @itemx zdatasource |
1750 Data source variables. | 1745 Data source variables. |
1811 @node Scatter group | 1806 @node Scatter group |
1812 @subsubsection Scatter group | 1807 @subsubsection Scatter group |
1813 @cindex group objects | 1808 @cindex group objects |
1814 @cindex scatter group | 1809 @cindex scatter group |
1815 | 1810 |
1816 TO BE WRITTEN | 1811 Scatter series objects are created by the @code{scatter} or @code{scatter3} |
1812 functions. A single hggroup element contains as many children as there are | |
1813 points in the scatter plot, with each child representing one of the points. | |
1814 The properties of the stem series are | |
1815 | |
1816 @table @code | |
1817 @item linewidth | |
1818 The line width of the line objects of the points. @xref{Line Styles}. | |
1819 | |
1820 @item marker | |
1821 @itemx markeredgecolor | |
1822 @itemx markerfacecolor | |
1823 The line and fill color of the markers of the points. @xref{Colors}. | |
1824 | |
1825 @item xdata | |
1826 @itemx ydata | |
1827 @itemx zdata | |
1828 The original x, y and z data of the stems. | |
1829 | |
1830 @item cdata | |
1831 The color data for the points of the plot. Each point can have a separate | |
1832 color, or a unique color can be specified. | |
1833 | |
1834 @item sizedata | |
1835 The size data for the points of the plot. Each point can its own size or a | |
1836 unique size can be specified. | |
1837 | |
1838 @item xdatasource | |
1839 @itemx ydatasource | |
1840 @itemx zdatasource | |
1841 @itemx cdatasource | |
1842 @itemx sizedatasource | |
1843 Data source variables. | |
1844 @end table | |
1817 | 1845 |
1818 @node Stair group | 1846 @node Stair group |
1819 @subsubsection Stair group | 1847 @subsubsection Stair group |
1820 @cindex group objects | 1848 @cindex group objects |
1821 @cindex stair group | 1849 @cindex stair group |
1850 @node Stem Series | 1878 @node Stem Series |
1851 @subsubsection Stem Series | 1879 @subsubsection Stem Series |
1852 @cindex series objects | 1880 @cindex series objects |
1853 @cindex stem series | 1881 @cindex stem series |
1854 | 1882 |
1855 TO BE WRITTEN | 1883 Stem series objects are created by the @code{stem} or @code{stem3} |
1884 functions. Each @code{hgrroup} element contains a single line object | |
1885 as a child respresenting the stems. The properties of the stem series | |
1886 are | |
1887 | |
1888 @table @code | |
1889 @item showbaseline | |
1890 @itemx baseline | |
1891 @itemx basevalue | |
1892 The property @code{showbaseline} flags whether the baseline of the | |
1893 stem series is displayed (default is "on"). The handle of the graphics | |
1894 object representing the baseline is given by the @code{baseline} | |
1895 property and the y-value (or z-value for @code{stem3}) of the baseline | |
1896 by the @code{basevalue} property. | |
1897 | |
1898 Changes to any of these property are propagated to the other members of | |
1899 the stem series and to the baseline itself. Equally changes in the | |
1900 properties of the base line itself are propagated to the members of the | |
1901 corresponding stem series. | |
1902 | |
1903 @item color | |
1904 The RGB color or color name of the line objects of the stems. @xref{Colors}. | |
1905 | |
1906 @item linewidth | |
1907 @itemx linestyle | |
1908 The line width and style of the line objects of the stems. @xref{Line Styles}. | |
1909 | |
1910 @item marker | |
1911 @itemx markeredgecolor | |
1912 @itemx markerfacecolor | |
1913 @itemx markersize | |
1914 The line and fill color of the markers on the stems. @xref{Colors}. | |
1915 | |
1916 @item xdata | |
1917 @itemx ydata | |
1918 @itemx zdata | |
1919 The original x, y and z data of the stems. | |
1920 | |
1921 @item xdatasource | |
1922 @itemx ydatasource | |
1923 @itemx zdatasource | |
1924 Data source variables. | |
1925 @end table | |
1856 | 1926 |
1857 @node Surface group | 1927 @node Surface group |
1858 @subsubsection Surface group | 1928 @subsubsection Surface group |
1859 @cindex group objects | 1929 @cindex group objects |
1860 @cindex surface group | 1930 @cindex surface group |
1861 | 1931 |
1862 TO BE WRITTEN | 1932 Surface group objects are created by the @code{surf} or @code{mesh} |
1933 functions, but are equally one of the handles returned by the @code{surfc} | |
1934 or @code{meshc} functions. The surface group is of the type @code{surface}. | |
1935 | |
1936 The properties of the surface group are | |
1937 | |
1938 @table @code | |
1939 @item edgecolor | |
1940 @item facecolor | |
1941 The RGB color or color name of the edges or faces of the surface. @xref{Colors}. | |
1942 | |
1943 @item linewidth | |
1944 @itemx linestyle | |
1945 The line width and style of the lines on the surface. @xref{Line Styles}. | |
1946 | |
1947 @item marker | |
1948 @itemx markeredgecolor | |
1949 @itemx markerfacecolor | |
1950 @itemx markersize | |
1951 The line and fill color of the markers on the surface. @xref{Colors}. | |
1952 | |
1953 @item xdata | |
1954 @itemx ydata | |
1955 @itemx zdata | |
1956 @item cdata | |
1957 The original x, y, z and c data. | |
1958 | |
1959 @item xdatasource | |
1960 @itemx ydatasource | |
1961 @itemx zdatasource | |
1962 @itemx cdatasource | |
1963 Data source variables. | |
1964 @end table | |
1863 | 1965 |
1864 @node Graphics backends | 1966 @node Graphics backends |
1865 @subsection Graphics backends | 1967 @subsection Graphics backends |
1866 @cindex graphics backends | 1968 @cindex graphics backends |
1867 @cindex backends, graphics | 1969 @cindex backends, graphics |