@@ -2488,78 +2488,77 @@ def pie(self, x, explode=None, labels=None, colors=None,
2488
2488
x : array
2489
2489
The input array used to make the pie chart.
2490
2490
2491
- explode: None or array
2491
+ explode : None or array
2492
2492
If not *None*, is a ``len(x)`` array which specifies the
2493
2493
fraction of the radius with which to offset each wedge.
2494
2494
2495
- colors: None or array
2495
+ colors : None or array
2496
2496
A sequence of matplotlib color args through which the pie chart
2497
2497
will cycle. If `None`, will use the colors in the currently
2498
2498
active cycle.
2499
2499
2500
- labels: None or list
2500
+ labels : None or list
2501
2501
A sequence of strings providing the labels for each wedge
2502
2502
2503
- autopct: None or string or function
2503
+ autopct : None or string or function
2504
2504
If not *None*, is a string or function used to label the wedges
2505
2505
with their numeric value. The label will be placed inside the
2506
2506
wedge. If it is a format string, the label will be ``fmt%pct``.
2507
2507
If it is a function, it will be called.
2508
2508
2509
- pctdistance: float
2509
+ pctdistance : float
2510
2510
The ratio between the center of each pie slice and the
2511
2511
start of the text generated by *autopct*. Ignored if
2512
2512
*autopct* is *None*; default is 0.6.
2513
2513
2514
- labeldistance: float
2514
+ labeldistance : float
2515
2515
The radial distance at which the pie labels are drawn
2516
2516
2517
- shadow: bool
2517
+ shadow : bool
2518
2518
Draw a shadow beneath the pie.
2519
2519
2520
- startangle: None or Offset angle
2520
+ startangle : None or float
2521
2521
If not *None*, rotates the start of the pie chart by *angle*
2522
2522
degrees counterclockwise from the x-axis.
2523
2523
2524
- radius: None or float
2524
+ radius : None or float
2525
2525
The radius of the pie, if *radius* is *None* it will be set to 1.
2526
2526
2527
- counterclock: bool
2527
+ counterclock : bool
2528
2528
Specify fractions direction, clockwise or counterclockwise.
2529
2529
2530
- wedgeprops: None or dict
2530
+ wedgeprops : None or dict
2531
2531
Dict of arguments passed to the wedge objects making the pie.
2532
2532
For example, you can pass in wedgeprops = { 'linewidth' : 3 }
2533
2533
to set the width of the wedge border lines equal to 3.
2534
2534
For more details, look at the doc/arguments of the wedge object.
2535
2535
By default `clip_on=False`.
2536
2536
2537
- textprops: None or dict
2537
+ textprops : None or dict
2538
2538
Dict of arguments to pass to the text objects.
2539
2539
2540
- center: list of int
2540
+ center : list of float
2541
2541
Center position of the chart. Takes value (0,0) or is a sequence
2542
2542
of 2 scalars.
2543
2543
2544
- frame: bool
2544
+ frame : bool
2545
2545
Plot axes frame with the chart if true.
2546
2546
2547
- rotatelabels: bool
2547
+ rotatelabels : bool
2548
2548
Rotate each label to the angle of the corresponding slice if true.
2549
2549
2550
2550
Returns
2551
2551
-------
2552
- patches: list
2552
+ patches : list
2553
2553
A sequence of :class:`matplotlib.patches.Wedge` instances
2554
2554
2555
- texts: list
2555
+ texts : list
2556
2556
A is a list of the label :class:`matplotlib.text.Text` instances.
2557
2557
2558
- autotexts: list
2558
+ autotexts : list
2559
2559
A is a list of :class:`~matplotlib.text.Text` instances for the
2560
- numeric labels. Is returned only is if parameter *autopct* is
2561
- not *None*. If *autopct* is *None*, the tuple returned
2562
- is (patches, texts).
2560
+ numeric labels. Is returned only if parameter *autopct* is
2561
+ not *None*.
2563
2562
2564
2563
Notes
2565
2564
--------
0 commit comments