.. wxPython Phoenix documentation This file was generated by Phoenix's sphinx generator and associated tools, do not edit by hand. Copyright: (c) 2011-2020 by Total Control Software License: wxWindows License .. include:: headings.inc .. currentmodule:: wx.lib.floatcanvas.FCObjects .. highlight:: python .. _wx.lib.floatcanvas.FCObjects.PieChart: ========================================================================================================================================== |phoenix_title| **wx.lib.floatcanvas.FCObjects.PieChart** ========================================================================================================================================== This is DrawObject for a pie chart You can pass in a bunch of values, and it will draw a pie chart for you, and it will make the chart, scaling the size of each "slice" to match your values. | |class_hierarchy| Class Hierarchy ================================= .. raw:: html
Inheritance diagram for class PieChart:
| |super_classes| Known Superclasses ================================== :class:`wx.lib.floatcanvas.FCObjects.DrawObject`, :class:`wx.lib.floatcanvas.FCObjects.LineOnlyMixin`, :class:`wx.lib.floatcanvas.FCObjects.XYObjectMixin` | |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~wx.lib.floatcanvas.FCObjects.PieChart.__init__` Default class constructor. :meth:`~wx.lib.floatcanvas.FCObjects.PieChart.CalcBoundingBox` Calculate the bounding box. :meth:`~wx.lib.floatcanvas.FCObjects.PieChart.CalculatePoints` Calculate the points. :meth:`~wx.lib.floatcanvas.FCObjects.PieChart.SetBrushes` Set the Brushes. :meth:`~wx.lib.floatcanvas.FCObjects.PieChart.SetFillColors` Set the FillColors and update the Brushes. :meth:`~wx.lib.floatcanvas.FCObjects.PieChart.SetFillStyles` Set te FillStyles and update the Brushes. :meth:`~wx.lib.floatcanvas.FCObjects.PieChart.SetValues` Set the values and calculate the points. ================================================================================ ================================================================================ | |api| Class API =============== .. class:: PieChart(XYObjectMixin, LineOnlyMixin, DrawObject) This is DrawObject for a pie chart You can pass in a bunch of values, and it will draw a pie chart for you, and it will make the chart, scaling the size of each "slice" to match your values. .. method:: __init__(self, XY, Diameter, Values, FillColors=None, FillStyles=None, LineColor = None, LineStyle = "Solid", LineWidth = 1, Scaled = True, InForeground = False) Default class constructor. :param `XY`: The (x,y) coords of the center of the chart :param `Diameter`: The diamter of the chart in world coords, unless you set "Scaled" to False, in which case it's in pixel coords. :param `Values`: sequence of values you want to make the chart of. :param `FillColors`: sequence of colors you want the slices. If None, it will choose (no guarantee you'll like them!) :param `FillStyles`: Fill style you want ("Solid", "Hash", etc) :param `LineColor`: Color of lines separating the slices :param `LineStyle`: style of lines separating the slices :param `LineWidth`: With of lines separating the slices :param `Scaled`: Do you want the pie to scale when zooming? or stay the same size in pixels? :param `InForeground`: Should it be on the foreground? .. method:: CalcBoundingBox(self) Calculate the bounding box. .. method:: CalculatePoints(self) Calculate the points. .. method:: SetBrushes(self) Set the Brushes. .. method:: SetFillColors(self, FillColors) Set the FillColors and update the Brushes. :param `FillColors`: sequence of colors .. method:: SetFillStyles(self, FillStyles) Set te FillStyles and update the Brushes. :param `FillStyles`: Fill style you want ("Solid", "Hash", etc) .. method:: SetValues(self, Values) Set the values and calculate the points. :param `Values`: sequence of values you want to use for the chart