మూస:Pie chart/doc

వికీపీడియా నుండి
Jump to navigation Jump to search


Usage[మార్చు]

The labels and values of up to 30 slices may be specified. All the parameters for six slices are included below; to include more slices, copy the code for one of the others, changing the digit at the end of each parameter name.

{{Pie chart
| radius = 100
| thumb = 
| caption = 
| other = 
| label1 =remember 
| value1 =16.6
| color1 =2
| label2 =understand
| value2 =16.6
| color2 =3 
| label3 =apply
| value3 =16.6 
| color3 =5 
| label4 =analyze
| value4 =16.6
| color4 =6
| label5 =evaluate
| value5 =16.6
| color5 =9
| label6 =design
| value6 =16.6
| color6 =10
}}
  • The parameter |radius= specifies the radius of the pie chart in pixels. Do not include a "px" suffix. If omitted, it will default to 100.
  • The parameter |thumb= specifies which side of the page the chart is floated to and defaults to right, as with image files. To make the chart appear on the left side of the page, specify |thumb=left.
  • The parameter |caption= specifies a string of text that appears on a line just before the legend.
  • The parameter |footer= specifies a string of text that appears below the legend.
  • The parameter |other=, if specified, will cause an "Other" item to appear in the legend.
  • Each |labelN= is a string of text that appears in the legend entry for a slice. Omitting it will cause a legend entry to not be shown for that slice.
  • Each |valueN= is the percentage that the slice represents. Do not include the percent sign. Also note that it is shown in the legend as written (just after the label), without any rounding or other reformatting.
  • Each |colorN= is a CSS color code or name. If omitted, it will default to the following hues:
  1.   light blue
  2.   strong blue
  3.   light green
  4.   strong green
  5.   fuchsia
  6.   red
  7.   light orange
  8.   strong orange
  9.   light purple
  10.   strong purple
  11.   light yellow
  12.   brown

Limitations[మార్చు]

  • The values need to be percentages.
  • Google Chrome and Safari do not appear to anti-alias borders, so the lines are a bit jagged. (For Chrome, this issue seems to be resolved; tested with version 26.)
  • No labels can be put on the slices themselves.
  • Inherently, it is not possible to save a copy of the chart using the browser's "Save Image" function.
  • Max. number of slices that can be displayed: 30

How it works[మార్చు]

  One (42%)
  Two (32%)
  Three (12%)
  Four (3%)
  Five (2%)
  Six (1%)
  Other (8%)

This is an experimental template that draws pie charts using a single image, a lot of (inline) CSS code generated by parser functions, and absolutely no JavaScript. It uses a technique for drawing diagonal lines in CSS exploiting the fact that borders set on elements are miter joined. Thus, it is possible to set one border to an opaque color, with the others fully transparent, to form a diagonal line. The angle of the line can be controlled by adjusting the widths of two adjacent borders (one of them opaque) relative to each other.

Pie slices are drawn in clockwise order in a counterclockwise direction. These pie slices are positioned:

  • Inside a square element of (2 * radius)x(2 * radius) pixels
  • with border-radius: radiuspx for a circular shape
  • with a white background (visible in the empty space that occurs if the "other" slice is present)
  • and with overflow: hidden; set.

This allows only the part of each slice that is inside the circle to be visible on the page.

Most of the code in {{Pie chart/slice}} is divided into five sections, the first four corresponding to quadrants of the circle and the last to cleanly cover the case in which one slice occupies 100% of the chart.

Example[మార్చు]

Religion in the Czech Republic as of 2001.

  Atheists and agnostics (59%)
  Catholics (26.8%)
  Protestants (2.5%)
  Other (11.7%)

The following example of Template:Pie chart generates the pie chart shown at right.

 {{Pie chart
 | caption=[[Religion in the Czech Republic]] as of 2001.
 | other = yes
 | label1 = [[Atheist]]s and [[Agnosticism|agnostics]]
 | value1 = 59 | color1 = silver
 | label2 = [[Catholic Church|Catholics]]
 | value2 = 26.8 | color2 = #008
 | label3 = [[Protestantism|Protestants]]
 | value3 = 2.5 | color3 = #08f
 }}

See also[మార్చు]

Formatted/colorized template source for Template:Pie chart
{{Documentation subpage}} <!-- PLEASE ADD CATEGORIES WHERE INDICATED AT THE BOTTOM OF THIS PAGE --> __NOTOC__ === Usage === The labels and values of up to 30 slices may be specified. All the parameters for six slices are included below; to include more slices, copy the code for one of the others, changing the digit at the end of each parameter name. <pre><nowiki> {{Pie chart | radius = 100 | thumb = | caption = | other = | label1 =remember | value1 =16.6 | color1 =2 | label2 =understand | value2 =16.6 | color2 =3 | label3 =apply | value3 =16.6 | color3 =5 | label4 =analyze | value4 =16.6 | color4 =6 | label5 =evaluate | value5 =16.6 | color5 =9 | label6 =design | value6 =16.6 | color6 =10 }} </nowiki>
  • The parameter </nowiki>{{para|radius}} specifies the radius of the pie chart in pixels. Do not include a "px" suffix. If omitted, it will default to 100. * The parameter {{para|thumb}} specifies which side of the page the chart is floated to and defaults to <code>right</code>, as with image files. To make the chart appear on the ''left'' side of the page, specify {{para|thumb
        |left}}. * The parameter {{para|caption}} specifies a string of text that appears on a line just before the legend. * The parameter {{para|footer}} specifies a string of text that appears ''below'' the legend. * The parameter {{para|other}}, if specified, will cause an "Other" item to appear in the legend. * Each {{para|label''N''}} is a string of text that appears in the legend entry for a slice. Omitting it will cause a legend entry to not be shown for that slice. * Each {{para|value''N''}} is the percentage that the slice represents. Do ''not'' include the percent sign. Also note that it is shown in the legend as written (just after the label), without any rounding or other reformatting. * Each {{para|color''N''}} is a [[Web colors|CSS color code or name]]. If omitted, it will default to the following hues: {{columns-list|colwidth=12em
        | # {{legend|#a6cee3
            |light blue}} # {{legend|#1f78b4
            |strong blue}} # {{legend|#b2df8a
            |light green}} # {{legend|#33a02c
            |strong green}} # {{legend|#fb9a99
            |fuchsia}} # {{legend|#e31a1c
            |red}} # {{legend|#fdbf6f
            |light orange}} # {{legend|#ff7f00
            |strong orange}} # {{legend|#cab2d6
            |light purple}} # {{legend|#6a3d9a
            |strong purple}} # {{legend|#ffff99
            |light yellow}} # {{legend|#b15928
            |brown}} }} === Limitations === * The values need to be percentages. * Google Chrome and Safari do not appear to [[anti-alias]] borders, so the lines are a bit jagged. (For Chrome, this issue seems to be resolved; tested with version 26.) * No labels can be put on the slices themselves. * Inherently, it is not possible to save a copy of the chart using the browser's "Save Image" function. * Max. number of slices that can be displayed: '''30''' === How it works === {{Pie chart

|other = yes
    |value1 = 42
    |label1 = One
    |value2 = 32
    |label2 = Two
    |value3 = 12
    |label3 = Three
    |value4 = 3
    |label4 = Four
    |value5 = 2
    |label5 = Five
    |value6 = 1
    |label6 = Six }} This is an ''experimental'' template that draws pie charts using a single image, a lot of (inline) CSS code generated by parser functions, and ''absolutely no JavaScript''. It uses a technique for [http://erezsh.wordpress.com/2008/07/31/drawing-diagonal-lines-with-css/ drawing diagonal lines in CSS] exploiting the fact that borders set on elements are [[miter join]]ed. Thus, it is possible to set one border to an opaque color, with the others fully transparent, to form a diagonal line. The angle of the line can be controlled by adjusting the widths of two adjacent borders (one of them opaque) relative to each other. Pie slices are drawn in clockwise order in a counterclockwise direction. These pie slices are positioned: * Inside a square element of (2 * <i>radius</i>)x(2 * <i>radius</i>) pixels * with <code>border-radius: <i>radius</i>px</code> for a circular shape * with a white background (visible in the empty space that occurs if the "other" slice is present) * and with <code>overflow: hidden;</code> set. This allows only the part of each slice that is inside the circle to be visible on the page. Most of the code in {{tlx|Pie chart/slice}} is divided into five sections, the first four corresponding to quadrants of the circle and the last to cleanly cover the case in which one slice occupies 100% of the chart. {{-}} === Example === {{Pie chart | caption=[[Religion in the Czech Republic]] as of 2001.
    | other = yes
    | label1 = [[Atheist]]s and [[Agnosticism|agnostics]]
    | value1 = 59
    | color1 = silver
    | label2 = [[Catholic Church|Catholics]]
    | value2 = 26.8
    | color2 = #008
    | label3 = [[Protestantism|Protestants]]
    | value3 = 2.5
    | color3 = #08f }} The following example of [[Template:Pie chart]] generates the pie chart shown at right. <pre style="overflow:auto"> {{Pie chart

| caption=[[Religion in the Czech Republic]] as of 2001.
 
    | other = yes
    | label1 = [[Atheist]]s and [[Agnosticism|agnostics]]
    | value1 = 59
    | color1 = silver
    | label2 = [[Catholic Church|Catholics]]
    | value2 = 26.8
    | color2 = #008
    | label3 = [[Protestantism|Protestants]]
    | value3 = 2.5
    | color3 = #08f }} </pre> === See also === * {{tl|Brick chart}} * {{tl|Composition bar}} * [[Module:Chart]] {{collapse top|Formatted/colorized template source for Template:Pie chart}} {{#invoke:FormatTemplate
    |format}} {{collapse bottom}} {{collapse top|Formatted/colorized template source for Template:Pie chart/slice}} {{#invoke:FormatTemplate
    |format
    |page=Template:Pie chart/slice}} {{collapse bottom}} {{collapse top|Formatted/colorized template source for Template:Legend}} {{#invoke:FormatTemplate
    |format
    |page=Template:Legend}} {{collapse bottom}} {{collapse top|Formatted/colorized template source for Template:Trim}} {{#invoke:FormatTemplate
    |format
    |page=Template:Trim}} {{collapse bottom}} {{Template:Graph, chart and plot templates}} <includeonly>{{Sandbox other|
    | <!-- CATEGORIES BELOW THIS LINE, PLEASE: --> [[Category:Chart, diagram and graph formatting and function templates]] [[Category:Graph, chart and plot templates]] }}</includeonly>:
Formatted/colorized template source for Template:Pie chart/slice

<includeonly><div style="border:solid transparent;position:absolute;width:{{{radius|100}}}px;line-height:0;{{#switch:{{#expr:floor({{{2}}}/25)}} <!-- 0-25% -->
    |0= left:{{{radius|100}}}px; top:{{#expr:{{{radius|100}}}*(1-sin(pi/50*{{{2}}}))}}px; border-width:0 0 {{#expr:{{{radius|100}}}*sin(pi/50*{{{2}}})}}px {{#expr:{{{radius|100}}}*cos(pi/50*{{{2}}})}}px; border-bottom-color:{{{1}}} "></div> <!-- 25-50% -->
    |1= right:{{{radius|100}}}px; top:0; border-width:0 {{#expr:{{{radius|100}}}*tan(pi/50*({{{2}}}-25))}}px {{{radius|100}}}px 0; border-right-color:{{{1}}} "></div> <div style="position:absolute;line-height:0;border-style:solid;right:0;top:0;border-width:0 {{{radius|100}}}px {{{radius|100}}}px 0;border-color:{{{1}}}"></div> <!-- 50-75% -->
    |2= right:{{{radius|100}}}px; top:{{{radius|100}}}px; border-width:{{#expr:{{{radius|100}}}*sin(pi/50*({{{2}}}-50))}}px {{#expr:{{{radius|100}}}*cos(pi/50*({{{2}}}-50))}}px 0 0; border-top-color:{{{1}}} "></div> <div style="position:absolute;line-height:0;border-style:solid;left:0;top:0;border-width:0 {{#expr:2*{{{radius|100}}}}}px {{{radius|100}}}px 0;border-color:{{{1}}}"></div> <!-- 75%-100% -->
    |3= left:{{{radius|100}}}px; top:{{{radius|100}}}px; border-width:{{{radius|100}}}px 0 0 {{#expr:{{{radius|100}}}*tan(pi/50*({{{2}}}-25))}}px; border-left-color:{{{1}}} "></div> <div style="position:absolute;line-height:0;border-style:solid;left:0;top:0;border-width:0 {{#expr:2*{{{radius|100}}}}}px {{{radius|100}}}px 0;border-color:{{{1}}}"></div> <div style="position:absolute;line-height:0;border-style:solid;left:0;top:0;border-width:0 {{{radius|100}}}px {{#expr:2*{{{radius|100}}}}}px 0;border-color:{{{1}}}"></div> <!-- 100% -->
    |4= left:0; top:0; border-width:0 {{#expr:2*{{{radius|100}}}}}px {{#expr:2*{{{radius|100}}}}}px 0; border-color:{{{1}}} "></div> }}</includeonly><noinclude> {{documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>:

Formatted/colorized template source for Template:Legend

<includeonly><!-- --><templatestyles src="Legend/styles.css" /><!-- --><div class="legend"><!-- --><span class="legend-color mw-no-invert" style="<!-- -->{{#if:{{{border|}}}
    |border: {{{border}}};
    |{{#if:{{{outline|}}}
        |border: 1px solid {{{outline}}};}}}}<!-- -->{{#if:{{{1|}}}
    |{{greater color contrast ratio|{{{1}}}
        |white
        |black
        |css=y}}}}<!-- -->{{#if:{{{textcolor|}}}
    |color:{{{textcolor}}};}}<!-- -->{{#if:{{{size|}}}
    |font-size:{{{size}}};}}"><!-- -->{{#if:{{{text|}}}{{{alt|}}}
    | <span class="legend-text" style="{{#if:{{{alt|}}}
        |color:{{{1|}}};}}font-family: monospace, monospace;">{{If empty|{{{alt|}}}
        |{{{text|}}}
        | }}</span>
    | }}<!-- --></span><!-- --> {{{2|}}}<!-- --></div><!-- --></includeonly><noinclude> {{Documentation}} </noinclude>:

Formatted/colorized template source for Template:Trim

<includeonly>{{safesubst:#if:1|{{{1|}}}}}</includeonly><noinclude> {{Documentation}} </noinclude>:

"https://te.wikipedia.org/w/index.php?title=మూస:Pie_chart/doc&oldid=3211135" నుండి వెలికితీశారు