Zingchart - 一些点隐藏在图表中
Zingchart - some points are hidden in the graph
我使用 Zingchart 绘制一些日志数据,因此我需要显示图表中的每个点。我在 json 中激活了 points 属性(参见
$scope.graphoptions = {
theme:"dark",
"gui":{
behaviors:[]
},
globals: {
shadow: false,
fontFamily: "Helvetica"
},
type: "line",
plot: {
aspect: "segmented",
marker: {}
},
"legend":{
margin :"5% 88%",
layout: "float",
fontSize : "10px",
backgroundColor: "#888888",
borderColor : "#000000",
shadowColor : "transparent",
toggleAction: "hide",
item: {
markerStyle : "circle",
fontColor: "#ffffff"
},
},
scaleX: {
zooming: true,
item: {
fontColor: "white"
},
guide: {
visible: false
},
"transform": {
"type": "date",
"all": "%G:%i",
}
},
"scaleY": {
zooming:true,
lineColor : "#DDD",
tick : {
lineColor : "#DDD"
},
item : {
fontColor : "#DDD"
},
refLine : {
lineColor : "#DDD"
},
},
tooltip : {
//we have to store the tooltip fkt globally so its ouside angulars
//scope thatswhy we have to pass the data to the function
jsRule : "applyTooltip("+$scope.fileName+")",
shadow:false
},
plotarea: {
"adjust-layout":true,
backgroundColor : '#272822'
},
}
完整 json).
如您在此屏幕截图中所见
已绘制读取图形的一些点,但绘制了蓝色图形的 none。
当我放大时:
显示了蓝色图表的一些标记。
这是一个错误还是我必须激活我不知道的 json 中的其他属性。
提前致谢!
假设您的数据应该绘制在这些点上,那么您将需要增加绘图上绘制的默认标记的数量。默认情况下,ZingChart 根据点数和图表宽度计算此数字。
maxNodes: N
其中 N 是您希望在给定点显示的最大节点数。例如maxNodes: 1000
如果工具提示在高分辨率下很重要,您还需要更改 maxTrackers: N
,其中 N 是工具提示要跟踪的节点数量。请注意,这会严重降低性能,具体取决于要跟踪的节点数量。例如maxTrackers: 1000
我使用 Zingchart 绘制一些日志数据,因此我需要显示图表中的每个点。我在 json 中激活了 points 属性(参见
$scope.graphoptions = {
theme:"dark",
"gui":{
behaviors:[]
},
globals: {
shadow: false,
fontFamily: "Helvetica"
},
type: "line",
plot: {
aspect: "segmented",
marker: {}
},
"legend":{
margin :"5% 88%",
layout: "float",
fontSize : "10px",
backgroundColor: "#888888",
borderColor : "#000000",
shadowColor : "transparent",
toggleAction: "hide",
item: {
markerStyle : "circle",
fontColor: "#ffffff"
},
},
scaleX: {
zooming: true,
item: {
fontColor: "white"
},
guide: {
visible: false
},
"transform": {
"type": "date",
"all": "%G:%i",
}
},
"scaleY": {
zooming:true,
lineColor : "#DDD",
tick : {
lineColor : "#DDD"
},
item : {
fontColor : "#DDD"
},
refLine : {
lineColor : "#DDD"
},
},
tooltip : {
//we have to store the tooltip fkt globally so its ouside angulars
//scope thatswhy we have to pass the data to the function
jsRule : "applyTooltip("+$scope.fileName+")",
shadow:false
},
plotarea: {
"adjust-layout":true,
backgroundColor : '#272822'
},
}
完整 json).
如您在此屏幕截图中所见
已绘制读取图形的一些点,但绘制了蓝色图形的 none。 当我放大时:
显示了蓝色图表的一些标记。 这是一个错误还是我必须激活我不知道的 json 中的其他属性。
提前致谢!
假设您的数据应该绘制在这些点上,那么您将需要增加绘图上绘制的默认标记的数量。默认情况下,ZingChart 根据点数和图表宽度计算此数字。
maxNodes: N
其中 N 是您希望在给定点显示的最大节点数。例如maxNodes: 1000
如果工具提示在高分辨率下很重要,您还需要更改
maxTrackers: N
,其中 N 是工具提示要跟踪的节点数量。请注意,这会严重降低性能,具体取决于要跟踪的节点数量。例如maxTrackers: 1000