gpt4 book ai didi

jquery - jqPlot,Y 轴刻度的字符名称

转载 作者:行者123 更新时间:2023-12-01 00:48:39 25 4
gpt4 key购买 nike

这是我在 stackoverflow 上问自己的第一个问题 - 这个网站已经帮助了我很多次了。请理解:)

我对 jqPlot 有问题,它看起来很简单,但它似乎并非如此。

我想在 Y 轴(刻度)上给出静态字符名称。 Y 轴值来自 Y 轴上的实际高度。我想创建如下名称:值 1、值 2、值 3、值 4、值 5...而不是(例如)1.5、3.0、4.5、7.0、100.0...

单独使用jqPlot配置是否可以。我看不到这样的选项,但也许有一个,我会感到羞愧:)。

预先感谢您的帮助。

(编辑)这是我使用的完整代码:

var plot2 = $.jqplot('chart2', [line_oczekiwana_srednia, line_sd_plus_1, line_sd_plus_2, line_sd_plus_3, line_sd_plus_4, line_sd_minus_1, line_sd_minus_2, line_sd_minus_3, line_sd_minus_4, line1, line_WEST4, ], {
animate: true,
title:'OLYMPUS LEVEL 1 0029 : Kontrola biochemii. Typ materiału: Surowica',
axes:{
xaxis:{
renderer:$.jqplot.DateAxisRenderer,
tickOptions:{
formatString:'%#d-%m-%y %#H:%M',
angle: -30,
},
tickRenderer:$.jqplot.CanvasAxisTickRenderer,
label:'Zakres czasu kontroli',
labelOptions:{
fontFamily:'Helvetica',
fontSize: '14pt'
},
labelRenderer: $.jqplot.CanvasAxisLabelRenderer
},
yaxis:{
numberTicks: 9,
ticks:[3.6284,3.6863,3.7442,3.8021,3.8600,3.9179,3.9758,4.0337,4.0916],
renderer:$.jqplot.LogAxisRenderer,
tickOptions:{
showGridline: false,
**formatString:'SDx:%.1f',**
labelPosition: 'middle',
angle:-0,
},
tickRenderer:$.jqplot.CanvasAxisTickRenderer,
labelRenderer: $.jqplot.CanvasAxisLabelRenderer,
labelOptions:{
fontFamily:'Helvetica',
fontSize: '14pt'
},
label:'Wartości (mmol/l)'
},
},
highlighter: {
show: true,
sizeAdjust: 12.5,
},
cursor: {
show: true,
zoom:true,
dblClickReset:true,
tooltipLocation:'sw'
},
series:[
{lineWidth:1, color: '#76a4e8', showMarker: false},
{lineWidth:1, color: '#d8d8d8', showMarker: false},
{lineWidth:1, color: '#d8d8d8', showMarker: false},
{lineWidth:1, color: '#d8d8d8', showMarker: false},
{lineWidth:1, color: '#d8d8d8', showMarker: false},
{lineWidth:1, color: '#d8d8d8', showMarker: false},
{lineWidth:1, color: '#d8d8d8', showMarker: false},
{lineWidth:1, color: '#d8d8d8', showMarker: false},
{lineWidth:1, color: '#d8d8d8', showMarker: false},
{lineWidth:2, color: '#f4ad31', rendererOptions: {animation: {speed: 1500}}, markerOptions:{color: 'gray', style:'filledSquare'}},
{showLine: false, color: 'red', markerOptions:{color: 'red', style:'filledSquare'}},
],
legend:{
renderer: jQuery.jqplot.EnhancedLegendRenderer,
show: true,
hideZeros: true,
location: 'se',
labels: ['Oczekiwana średnia (3.8600)', 'SD+1 (3.9179)', 'SD+2 (3.9758)', 'SD+3 (4.0337)', 'SD+4 (4.0916)', 'SD-1 (3.8021)', 'SD-2 (3.7442)', 'SD-3 (3.6863)', 'SD-4 (3.6284)', 'Wyniki kontroli (3.6284)', 'Reguła WEST4', ]
}

});

最佳答案

您可以将刻度指定为 [val, label]对。请注意,必须正确订购它们。

$(document).ready(function(){
var plot1 = $.jqplot ('chart1', [[3,7,1,4,6]],{
axes: {
yaxis: {
ticks: [[1,'-SD1'],[3,'-SD4'],[4,'MEAN'],[6,'SD1'],[7,'-SD3']]
}
}});
});​

enter image description here

fiddle here .

关于jquery - jqPlot,Y 轴刻度的字符名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12873174/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com