c# - WPF Toolkit hide "Key" value in Area Chart -
i have chart displays cpu usage
. uses following code add values , refresh:
cpuchartvaluelist.add(new keyvaluepair<string, int>(i.tostring(), icputotal_usage)); cpu_chart.datacontext = cpuchartvaluelist; cpu_chart.refresh();
in string value there recorded seconds , int value contais cpu usage
.
chart rendered correctly can't rid of key
string value showing in chart. im sitting 2 hours on , still can't find solution.
everything works can't hide "seconds". if add new x-axis , set hidden wpftoolkit
adds new axis these seconds on top (what going on?)
i've run out of ideas. grateful if provide me way disable this.
waiting best regards
Comments
Post a Comment