作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试绘制折线图,我正在使用 CategoryAxisRenderer。我想在 ticks
选项中指定刻度
$.jqplot.config.enablePlugins = true;
var chartData = [["19-Jan-2012", 2.61], ["20-Jan-2012", 5.00], ["21-Jan-2012", 6.00]];
function PlotChart(chartData, extraDays) {
var plot2 = $.jqplot('chart1', [chartData], {
title: 'Mouse Cursor Tracking',
seriesDefaults: {
renderer: $.jqplot.LineRenderer,
pointLabels: {
show: true
}
},
axes: {
xaxis: {
pad: 1,
renderer: $.jqplot.CategoryAxisRenderer
,ticks:["19-Jan-2012","20-Jan-2012","21-Jan-2012"]
},
yaxis: {
tickOptions: {
formatString: '$%.2f'
}
}
},
highlighter: {
sizeAdjust: 7.5
},
cursor: {
show: true
}
});
}
PlotChart(chartData, 3);
如果我注释掉 ticks
选项,上面的代码可以正常工作。但是在激活 ticks
选项的情况下,它不会在图表上显示线条。
最佳答案
我将数据更改为 var chartData = [ 2.61, 5.00, 6.00];
现在它工作正常 See Example
代码
$.jqplot.config.enablePlugins = true;
var chartData = [ 2.61, 5.00, 6.00];
function PlotChart(chartData, extraDays) {
var plot2 = $.jqplot('chart1', [chartData], {
title: 'Mouse Cursor Tracking',
seriesDefaults: {
renderer: $.jqplot.LineRenderer,
pointLabels: {
show: true
}
},
axes: {
xaxis: {
pad: 1,
// a factor multiplied by the data range on the axis to give the
renderer: $.jqplot.CategoryAxisRenderer,
// renderer to use to draw the axis,
ticks:["19-Jan-2012","20-Jan-2012","21-Jan-2012"]
},
yaxis: {
tickOptions: {
formatString: '$%.2f'
}
}
},
highlighter: {
sizeAdjust: 7.5
},
cursor: {
show: true
}
});
}
PlotChart(chartData, 3);
关于javascript - 如何在使用 CategoryAxisRenderer 时使用 'ticks' 选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17177223/
我正在尝试绘制折线图,我正在使用 CategoryAxisRenderer。我想在 ticks 选项中指定刻度 Code link: jsfiddle $.jqplot.config.enable
我是一名优秀的程序员,十分优秀!