comparison doc/interpreter/plot.txi @ 8258:2b408bbd8904

Add error bar series
author David Bateman <dbateman@free.fr>
date Wed, 22 Oct 2008 11:21:28 +0100
parents 79c874fe5100
children 4eb77147834d
comparison
equal deleted inserted replaced
8257:79c874fe5100 8258:2b408bbd8904
1707 @node Error bar series 1707 @node Error bar series
1708 @subsubsection Error bar series 1708 @subsubsection Error bar series
1709 @cindex series objects 1709 @cindex series objects
1710 @cindex error bar series 1710 @cindex error bar series
1711 1711
1712 TO BE WRITTEN 1712 Error bar series are created by the @code{errorbar} function. Each
1713 @code{hgrroup} element contains two line objects represnting the data and
1714 the errorbars separately. The properties of the error bar series are
1715
1716 @table @code
1717 @item color
1718 The RGB color or color name of the line objects of the error bars. @xref{Colors}.
1719
1720 @item linewidth
1721 @itemx linestyle
1722 The line width and style of the line objects of the error bars. @xref{Line Styles}.
1723
1724 @item marker
1725 @itemx markeredgecolor
1726 @itemx markerfacecolor
1727 @itemx markersize
1728 The line and fill color of the markers on the error bars. @xref{Colors}.
1729
1730 @item xdata
1731 @itemx ydata
1732 @itemx ldata
1733 @itemx udata
1734 @itemx xldata
1735 @itemx xudata
1736 The original x, y, l, u, xl, xu data of the error bars.
1737
1738 @item xdatasource
1739 @itemx ydatasource
1740 @itemx ldatasource
1741 @itemx udatasource
1742 @itemx xldatasource
1743 @itemx xudatasource
1744 Data source variables.
1745 @end table
1746
1747 @node Surface group
1748 @subsubsection Surface group
1749 @cindex group objects
1750 @cindex surface group
1751
1752 Surface group objects are created by the @code{surf} or @code{mesh}
1753 functions, but are equally one of the handles returned by the @code{surfc}
1754 or @code{meshc} functions. The surface group is of the type @code{surface}.
1755
1756 The properties of the surface group are
1757
1758 @table @code
1759 @item edgecolor
1760 @item facecolor
1761 The RGB color or color name of the edges or faces of the surface. @xref{Colors}.
1762
1763 @item linewidth
1764 @itemx linestyle
1765 The line width and style of the lines on the surface. @xref{Line Styles}.
1766
1767 @item marker
1768 @itemx markeredgecolor
1769 @itemx markerfacecolor
1770 @itemx markersize
1771 The line and fill color of the markers on the surface. @xref{Colors}.
1772
1773 @item xdata
1774 @itemx ydata
1775 @itemx zdata
1776 @item cdata
1777 The original x, y, z and c data.
1778
1779 @item xdatasource
1780 @itemx ydatasource
1781 @itemx zdatasource
1782 @itemx cdatasource
1783 Data source variables.
1784 @end table
1713 1785
1714 @node Line series 1786 @node Line series
1715 @subsubsection Line series 1787 @subsubsection Line series
1716 @cindex series objects 1788 @cindex series objects
1717 @cindex line series 1789 @cindex line series