I have a component that has an entry point as a parameter and I need to show the integral of this point.
I was testing with this:
<ma-get-point-value point="$ctrl.data"></ma-get-point-value>
<ma-calc input="$ctrl.data | filter:{statistics:'INTEGRAL'} " output="$ctrl.dataIntegral"></ma-calc>
but it does not work, also try this:
<ma-get-point-value point="$ctrl.data"></ma-get-point-value>
<ma-point-statistics points="$ctrl.data" rendered=false display-mode="INTEGRAL" rollup-interval="1 MONTHS"></ma-point-statistics>
I was seeing some examples and after trying other options, I can't show the value in my view.
Thanks.