饼状图、环状图、曲线图、走势图等无关css的图形
无
$("span.pie").peity("pie", {
width: 50,
height: 50
});
$("span.donut").peity("donut", {
width: 50,
height: 50
});
$(".peity-line").each(function() {
$(this).peity("line", $(this).data());
});
$(".peity-bar").each(function() {
$(this).peity("bar", $(this).data());
});