search
HomeWeb Front-endJS TutorialjqPlot chart Chinese API usage documentation, source code and online examples_jquery

Introduction

jqplot is a very good chart plug-in based on jquery. This article mainly helps you organize the Chinese usage instructions, online examples and source code downloads of jqplot. The jqplot plug-in will render charts on canvas on browsers that support HTML5.

Introduce script files

jqplot requires jquery version 1.4.3 or above. As mentioned just now, jqplot will be rendered as canvas on browsers that support HTML5 Canvas , otherwise, if you are using a browser below IE9, you must import the excanvas.js file. Of course, the CSS file of jqplot must also be imported at the same time. The code is as follows:

Copy code The code is as follows:







Add a plot container

We can add a container for jqplot on the page, such as a div, but it should be noted that the width and height must be specified for this div container, as shown in the following code:



Start creating the plot chart

Next we create it above Charts are generated and rendered in a good container by calling $.jqplot. For example, if you use the following data to initialize the jqplot chart:

$.jqplot('chartdiv', [[[1, 2],[ 3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]]);

The final display effect is as shown below:

jqplot attribute options
We can pass in some parameter options to customize jqplot when calling $.jqplot. Some parameter options are as follows:
Copy code The code is as follows:

seriesColors: [ "#4bb2c5", "#c5b47f", "#EAA228", "#579575", "#839557", "#958c12",
"#953579", "#4b5de4 ", "#d8b83f", "#ff5800", "#0085cc"], // The default displayed category color. If the number of categories exceeds the number of colors here,
// From the first position in the queue Start re-assigning values ​​to the corresponding categories
stackSeries: false, // If set to true and there are multiple categories (if it is a line chart, there must be more than one polyline), then each category (line)
//The value on the vertical axis is the sum of the vertical axis values ​​of all previous categories and the sum of its vertical and horizontal axis values ​​
title: '', //Set the title of the current picture
title: {
text: '', //Set the title of the current picture
show: true, //Set whether the title of the current picture is displayed
},
axesDefaults: {
show: false, whether to automatically display coordinates axis.
min: null, the minimum scale value of the horizontal (vertical) axis
max: null, the maximum scale value of the horizontal (vertical) axis
pad: 1.2, the increase factor of the horizontal (vertical) axis scale value
ticks: [], //Set the value on the horizontal (vertical) coordinate scale, which can be the value in the ticks array
numberTicks: undefined,//A division factor, used to set the horizontal (vertical) coordinate scale Interval, horizontal (vertical) coordinate scale interval value = horizontal (vertical) coordinate interval length/(numberTicks-1)
renderer: $.jqplot.LinearAxisRenderer, // Set the renderer for loading data on the horizontal (vertical) axis
rendererOptions: {}, // Set the Option configuration object of the renderer. Line graphs do not need to be set.
tickOptions: {
mark: 'outside', // Set the display mode of the scale on the coordinate axis: minutes They are: coordinate axis outer display, inner display, and through display; their values ​​are 'outside', 'inside' or 'cross' respectively.
showMark: true, //Set whether to display the scale
showGridline: true, // Whether to display the grid in the direction of the scale value in the chart area
markSize: 4, //The distance between each tick mark vertex and the tick mark The distance between points on the coordinate axis (in pixels). If the mark value is 'cross', then each tick mark has an upper vertex and a lower vertex. The tick mark intersects with the coordinate axis
in the middle of the tick mark, then this Distance×2
show: true, //Whether to display tick marks, grid lines in the same direction as the tick marks, and scale values ​​on the coordinate axis
showLabel: true, //Whether to display tick marks and coordinate axes The scale value on the axis
formatString: '', //Set the display format of the scale value on the coordinate axis, eg:'%b %#d, %Y' means the format "month, day, year", "AUG 30,2008"
fontSize:'10px', //The font size of the scale value
fontFamily:'Tahoma', //The font on the scale value
angle:40, //The angle between the scale value and the coordinate axis, the angle is Positive clockwise direction of the coordinate axis
fontWeight:'normal', //The thickness of the font
fontStretch:1//The degree of stretch (stretch) of the scale value in the direction (outside the coordinate axis)
}
showTicks: true, //Whether to display tick marks and scale values ​​on the coordinate axis,
showTickMarks: true, //Set whether to display ticks
useSeriesColor: true //If there are multiple vertical (horizontal) ) coordinate axes, use this property to set whether these coordinate axes are displayed in different colors
},
axes: {
xaxis: {
// same options as axesDefaults
},
yaxis: {
// same options as axesDefaults
},
x2axis: {
// same options as axesDefaults
},
y2axis: {
// same options as axesDefaults
}
},
seriesDefaults: {//If there are multiple categories, you can set the common attributes of each category through this configuration attribute
show: true, //Set whether to render the entire Chart area (that is, displaying the content in the chart).
xaxis: 'xaxis', // either 'xaxis' or 'x2axis'.
yaxis: 'yaxis', // either 'yaxis' or 'y2axis'.
label: '', // The category name used to display in the category name box.
color: '', // The color of the category represented in the icon (discount, histogram, etc.).
lineWidth: 2.5, // What is the width of classification charts (especially line charts).
shadow: true, // Whether each chart displays a shadow area in the chart.
shadowAngle: 45, // Same as in grid Parameters.
shadowOffset: 1.25, //Refer to the same parameters in the grid.
shadowDepth: 3, //Refer to the same parameters in the grid.
shadowAlpha: 0.1, // Opacity of the shadow.
showLine : true, //Whether to display the polyline in the chart (polyline in the line chart)
showMarker: true, // Whether to highlight the data nodes in the graph
fill: false, // Whether to fill under the polyline in the chart area (the fill color is the same as the polyline color) and the color of the category in the category name box set by legend
//It should be noted here that if fill is true,
//then showLine must be true, otherwise it will not Display effect
fillAndStroke: false, //When fill is true, a line is displayed at the top of the filled area (if it is a line chart, the line is displayed)
fillColor: undefined, //Set the fill area Color
fillAlpha: undefined, // Set the transparency of the filled area
renderer: $.jqplot.PieRenderer, // Use the renderer (here, the pie chart PieRenderer is used) to render the existing chart
//, Thus converted into the required chart
rendererOptions: {}, // Pass the option object of the renderer set by the previous attribute. The renderer of the line chart does not have an option object.
// Option configuration objects of different charts Please refer to the following "Option object settings of different jqPlot plug-ins"
//Configuration Option objects of each chart
markerRenderer: $.jqplot.MarkerRenderer, // renderer to use to draw the data
// point markers.
markerOptions: {
show: true, // Whether to display data points in the graph
style: 'filledCircle', // The way each data point is displayed in the graph, the default is "filledCircle "(solid circle),
//Several other methods circle, diamond, square, filledCircle,
// filledDiamond or filledSquare.
lineWidth: 2, // The width of each side of the data point ( If the setting is too large, each edge will be repeated and the display will be similar to a solid point)
size: 9, // The size of the data point
color: '#666666' // The color of the data point
shadow : true, // Whether to display shadow area for data points (increase three-dimensional effect)
shadowAngle: 45, // Shadow area angle, x-axis clockwise direction
shadowOffset: 1, // Refer to the same parameters in grid
shadowDepth: 3, //Refer to the same parameters in the grid
shadowAlpha: 0.07 //Refer to the same parameters in the grid
}
isDragable: true, //Whether dragging is allowed (if the dragable package has been introduced) , draggable by default
},
series:[
//If there are multiple categories that need to be displayed, set the relevant configuration properties of each category here
//eg. Set each category Category name in the category name box
//[label: 'Traps Division'},{label: 'Decoy Division'},{label: 'Harmony Division'}]//Configuration parameter settings are the same as seriesDefaults
],
legend: {
show: false,//Set whether the category name box appears (that is, the names of all categories appear at a certain position in the picture)
location: 'ne', // The location where the category name box appears, nw, n, ne, e, se, s, sw, w.
xoffset: 12, // The distance between the category name box and the upper border of the chart area (unit px)
yoffset: 12, //The distance between the category name box and the left border of the chart area (unit px)
background:'' //The distance between the category name box and the background color of the chart area
textColor:' ' // font color within the chart area within the category name box distance
},
grid: {
drawGridLines: true, // wether to draw lines across the grid or not.
gridLineColor: '#cccccc ' // Set the color of the grid background line of the entire icon area
background: '#fffdf6', // Set the background color of the entire chart area
borderColor: '#999999', // Set the (outermost) of the chart ) border color
borderWidth: 2.0, //Set the width of the (outermost) border of the chart
shadow: true, //Set a shadow for the entire icon (outermost) border to highlight its three-dimensional effect
shadowAngle: 45, // Set the angle of the shadow area, rotate clockwise from the x-axis
shadowOffset: 1.5, // Set the offset distance of the shadow area from the picture border
shadowWidth: 3, // Set the shadow area The width of
shadowDepth: 3, // Set the number of overlapping shadows in the audio and video area
shadowAlpha: 0.07 // Set the transparency of the shadow area
renderer: $.jqplot.CanvasGridRenderer, // renderer to use to draw the grid.
rendererOptions: {} // options to pass to the renderer. Note, the default
// CanvasGridRenderer takes no additional options.
},
//Option objects of different jqPlot plug-ins Settings
//BarRenderer (setting the Option object of the histogram)
//This Option object applies to the configuration object settings related to the series and seriesDefault properties of the histogram
seriesDefaults: {
rendererOptions: {
barPadding: 8, //Set the distance (px) between two columnar bars of the same category
barMargin: 10, //Set the distance (px) between two columnar bars of different categories (same horizontal coordinate table point)
barDirection: 'vertical', //Set the direction of the histogram display: vertical display and horizontal display
//, the default vertical display is vertical or horizontal.
barWidth: null, // Set the width of each column bar in the histogram
shadowOffset: 2, // Same attribute settings as grid
shadowDepth: 5, // Same attribute settings as grid
shadowAlpha: 0.8, // Same as grid Attribute settings
}
},
// Cursor (cursor)
// When the mouse moves to the image, the mouse will be displayed in the image. It is often used together with the highlight function
//In addition, drill into a certain area in the picture (zoom in on the selected area) by setting the zoom-related properties of this property.
//This configuration object is configured directly under option
cursor: {
style: 'crosshair', //When the mouse moves over the picture, the display style of the mouse. The attribute value is the css class
show: true, //Whether to display the cursor
showTooltip: true, // Whether to display it Prompt information bar
followMouse: false, //Whether the cursor prompt information bar moves with the cursor (mouse)
tooltipLocation: 'se', //Set the position of the cursor prompt information bar. If followMouse=true, then the position is
//The position of the prompt information bar relative to the cursor.Otherwise, prompt the position of the information bar in the icon for the cursor
// Optional values ​​for this attribute: n, ne, e, se, etc.
tooltipOffset: 6, //The distance between the prompt information bar and the mouse (followMouse= true) or the position of the coordinate axis (followMouse=false)
showTooltipGridPosition: false, // Whether to display the cursor position in the information prompt bar (based on the pixel distance between the left and upper edges of the icon)
showTooltipUnitPosition: true, // Whether to display an information bar that prompts the position of the cursor (take its data value on the horizontal and vertical axes)
// Note: Note the difference between this and the showTooltipGridPosition value. The former displays the coordinate value, and the data value is displayed there
tooltipFormatString: '%.4P', // Same as Highlighter's tooltipFormatString
useAxesFormatters: true, // Same as Highlighter's tooltipFormatString
tooltipAxesGroups: [], // show only specified axes groups in tooltip. Would specify like :
// [['xaxis', 'yaxis'], ['xaxis', 'y2axis']]. By default, all axes
// combinations with for the series in the plot are shown.
},
// Dragable (drag)
//This configuration object is configured through seriesDefaults and series configuration objects
seriesDefaults: {
dragable: {
color: undefined, / / When dragging a data point, the drag line and drag data point color
constrainTo: 'none', //Set the dragging range: 'x' (can only be dragged horizontally),
// 'y' (can only be dragged vertically), or 'none' (unlimited).
},
},
// Highlighter (highlight)
// Set the highlight action option attribute object
//When the mouse moves to a certain data point, the data point increases and a prompt message box is displayed
//The configuration object is directly configured under the option
highlighter: {
lineWidthAdjust: 2.5, //When the mouse moves over the enlarged data point, set the width of the enlarged data point
// Currently only applicable to non-solid data points
sizeAdjust: 5, / / When the mouse moves to the data point, the increment of the data point expansion
showTooltip: true, // Whether to display the prompt information bar
tooltipLocation: 'nw', // The prompt information display position (English direction) initial letter): n, ne, e, se, s, sw, w, nw.
fadeTooltip: true, // Set the way the prompt information bar appears and disappears (whether to fade in or out)
tooltipFadeSpeed: "fast"//Set the fade-in and fade-out speed of the prompt information bar: slow, def, fast, or a value in milliseconds.
tooltipOffset: 2, // The offset of the highlighted data point in the prompt information bar Shift position, in pixels.
tooltipAxes: 'both', // The prompt information box displays the value on the coordinate axis of the data point. There are currently three modes: horizontal/vertical/horizontal and vertical.
//The values ​​are x, y or xy.
tooltipSeparator: ', ' // The separation symbol between different values ​​in the prompt information bar
useAxesFormatters: true // The format for displaying data in the prompt information box Is it consistent with the display format of the data on the coordinate axis?
tooltipFormatString: '%.5P' // Used to set the format of data display in the prompt information box, the prerequisite is useAxesFormatters
// is false. At this time the information The data format in the prompt box is no longer consistent with the coordinate axis, but is based on this
//At the same time, this attribute also supports html format strings
//eg:'< ;span style="color:red;" mce_style="color:red;">hello %.2f'
},
// LogAxisRenderer (Exponential renderer)
// This renderer has only two properties. The exponential renderer is configured through axesDefaults and axes configuration objects
axesDefaults: {
base: 10, // The base of the exponent
tickDistribution: 'even', // Coordinate axis display mode: 'even' or 'power'. 'even' produces coordinate tick values ​​evenly distributed on the coordinate
// axis.And 'power' determines the scale on the coordinate axis based on the increasing increment
},
// PieRenderer (sets the OPtion object of the pie chart)
// The pie chart passes seriesDefaults Configure with the series configuration object
seriesDefaults: {
rendererOptions: {
diameter: undefined, // Set the diameter of the pie
padding: 20, // The distance between the pie and its category name box or chart border Distance, disguised as the diameter of the pie
sliceMargin: 20, // The distance between each part of the pie
fill:true, // Set the filled state of each part of the pie
shadow:true , //Set a shadow for the border of each part of the pie to highlight its three-dimensional effect
shadowOffset: 2, //Set the shadow area offset from the border of each part of the pie
shadowDepth: 5, // Set the depth of the shadow area
shadowAlpha: 0.07 // Set the transparency of the shadow area
}
},
//pointLabels (data point labels)
//Used to position the data points Display relevant information (not a prompt box)
seriesDefaults: {
pointLabels: {
location:'s',//Data labels display the location near the data point
ypadding:2 //Data The distance between the label and the data point in the vertical axis direction
}
}
// Trendline (trend line)
// The pie chart is configured through seriesDefaults and series configuration objects
seriesDefaults: {
trendline: {
show: true, // Whether to display the trend line
color: '#666666', // Trend line color
label: '', // Trend line name
type: 'linear', //Trend line type 'linear' (straight line), 'exponential' (power value line) or 'exp'
shadow: true, // Same attribute settings as grid
lineWidth : 1.5, // Trend line width
shadowAngle: 45, // Same attribute settings as grid
shadowOffset: 1.5, // Same attribute settings as grid
shadowDepth: 3, // Same attribute settings as grid
shadowAlpha: 0.07 // Same attribute settings as grid
}
}
}

Here is an example of using custom parameters:
Copy code The code is as follows:

$.jqplot('chartdiv', [[[1, 2],[3 ,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]],
{ title:'Exponential Line',
axes:{yaxis:{min: -10, max:240}},
series:[{color:'#5FAB78'}]
});

The display effect is as shown below:

Source code download http://www.jb51.net/jiaoben/35457.html
Its official website: http://www.jqplot.com/.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何在Google Sheet中为图例添加标签如何在Google Sheet中为图例添加标签Feb 19, 2024 am 11:03 AM

本文将演示如何在GoogleSheet中为图例添加标签,这些标签侧重于单个事物,提供名称或标识。图例解释了事物的系统或组,为您提供相关的上下文信息。如何在GoogleSheet中为图例添加标签有时候,在使用图表时,我们想要让图表更易于理解。通过添加恰当的标签和图例,可以实现这一目的。接下来,我们将介绍如何在Google表格中为图例添加标签,让您的数据更加清晰明了。创建图表编辑图例标签的文本我们开始吧。1]创建图表要标记图例,首先,我们必须创建一个图表:首先,在GoogleSheets的列或行中输

如何使用PHP数组实现图表和统计图的生成和显示如何使用PHP数组实现图表和统计图的生成和显示Jul 15, 2023 pm 12:24 PM

如何使用PHP数组实现图表和统计图的生成和显示PHP是一种广泛使用的服务器端脚本语言,具有强大的数据处理和图形生成能力。在Web开发中,经常需要展示数据的图表和统计图,通过PHP数组,我们可以轻松实现这些功能。本文将介绍如何使用PHP数组生成和显示图表和统计图,并提供相关的代码示例。引入必要的库文件和样式表在开始之前,我们需要在PHP文件中引入一些必要的库文

Vue框架下,如何快速搭建统计图表系统Vue框架下,如何快速搭建统计图表系统Aug 21, 2023 pm 05:48 PM

Vue框架下,如何快速搭建统计图表系统在现代网页应用中,统计图表是必不可少的组成部分。Vue.js作为一款流行的前端框架,提供了很多便捷的工具和组件,能够帮助我们快速搭建统计图表系统。本文将介绍如何利用Vue框架以及一些插件来搭建一个简单的统计图表系统。首先,我们需要准备一个Vue.js的开发环境,包括安装Vue脚手架以及一些相关的插件。在命令行中执行以下命

Vue统计图表的线性、饼状图功能实现Vue统计图表的线性、饼状图功能实现Aug 19, 2023 pm 06:13 PM

Vue统计图表的线性、饼状图功能实现在数据分析和可视化领域,统计图表是一种非常常用的工具。Vue作为一种流行的JavaScript框架,提供了便捷的方法来实现各种功能,包括统计图表的展示和交互。本文将介绍如何使用Vue来实现线性和饼状图功能,并提供相应的代码示例。线性图功能实现线性图是一种用于展示数据趋势和变化的图表类型。在Vue中,我们可以使用一些优秀的第

word图表怎么插入word图表怎么插入Mar 20, 2024 pm 03:41 PM

有时为了是数据展示的更加直观,我们需要借助图表来展示,但一说到图表很多人认为只能在excel上操作,其实不然,word也是可以直接插入图表。那如何操作呢?一起看看就知道了。1.首先我们打开一个word文档。  2.接下来我们在“插入”菜单中,找到“图表”工具按钮并点击。  3.单击“图表”按钮,在里面选择一个适合的图表,这里我们随意选择一种图表类型,单击“确定”就可以了  4.选择好图表之后,系统会自动打开excel图表,而且里面已经录入好数据,我们只要更改一下数据即可。这里大家如果已经做好表格

Excel图表学习之如果让图表像网页一样动起来Excel图表学习之如果让图表像网页一样动起来Aug 16, 2022 am 10:30 AM

在之前的文章《Excel图表学习之通过案例,聊聊怎么绘制量筒式柱形图》中,我们了解了绘制量筒式柱形图的方法。而今天我们再分享一个Excel图表教程,聊一个让Excel图表像网页一样动起来的方法,只要输入关键字,表格数据和图表就会自动改变,特别是公司的数据需要分部门统计时,简直太方便啦!

PHP实时图表生成技术详解PHP实时图表生成技术详解Jun 28, 2023 am 08:55 AM

在今天的Web应用开发中,实时的数据展示是非常重要的一部分,很多应用需要实时地可视化呈现数据。在如今的大数据时代,数据分析和可视化已经成为必不可少的工具。从日常生活中的股票行情、气象预报、网络流量监控到工业生产质量、人口普查、客户增长率等,实时可视化都有重要的应用场景。本文将会详细介绍一种PHP实时图表生成技术。一、实时图表生成技术介绍实时图表生成是指当数据

如何使用PHP和Vue.js实现图表上的数据筛选和排序功能如何使用PHP和Vue.js实现图表上的数据筛选和排序功能Aug 27, 2023 am 11:51 AM

如何使用PHP和Vue.js实现图表上的数据筛选和排序功能在网页开发中,图表是一种非常常见的数据展示方式。使用PHP和Vue.js可以轻松实现图表上的数据筛选和排序功能,使用户能够自定义查看图表上的数据,提高数据的可视化效果和用户体验。首先,我们需要准备一组数据供图表使用。假设我们有一个数据表格,包含姓名、年龄和成绩三列,数据如下:姓名年龄成绩张三1890李

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.