Template:Pie chart/doc

出自维基百科,自由个百科全书

模板介紹[编辑]

這是製作圓餅圖的模板

使用方法[编辑]

The labels and values of up to ten slices may be specified. All the parameters for three 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
| thumb = 
| caption = 
| other = 
| label1 = 
| value1 = 
| color1 = 
| label2 = 
| value2 = 
| color2 = 
| label3 = 
| value3 = 
| color3 = 
}}

範例[编辑]

The following example of Template:Pie_chart generates the pie chart show 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
 }}

注意事项[编辑]

  • The template does not render correctly on mobile devices. See this page on the mobile site and a user's report of this issue.
  • Minor issues with printing exist. We also need to implement a good fallback for Books.
  • The values need to be percentages.
  • Google Chrome and Safari do not appear to anti-alias borders, so the lines are a bit jagged.
  • 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.

參見[编辑]

给模板编辑者的说明[编辑]

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

Religion in the Czech Republic as of 2001.      Atheists and agnostics (59%)     Catholics (26.8%)     Protestants (2.5%)     Other (11.7%)

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.

Note that in the legacy browser Internet Explorer 6, applying transparent borders the standard way does not work. A workaround is used in the form of the CSS class "transborder", which has been added to MediaWiki:Common.css to make this template usable.

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

  • Below a 200x200px image having a transparent circle on a light-colored background (same as the background color used for CSS class "thumbinner")
  • Inside a container element 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.

模板结构[编辑]

实现方法[编辑]

编辑注意[编辑]