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.

cpu usage

everything works can't hide "seconds". if add new x-axis , set hidden wpftoolkit adds new axis these seconds on top (what going on?)

second chart

i've run out of ideas. grateful if provide me way disable this.

waiting best regards


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -