= #JxnPortable\docs\applet_examples\SliderAnimation1.jxn

slider = @JxnSliderPanel($this);
!
!               name start   min   max
a = slider.add( "a",   1.,   -1.,   1. )
b = slider.add( "b",  -1.,  -10.,  10. )
c = slider.add( "c", -50., -100., 100. )
!
pf = plot( x, a ( x - b )^2 + c ).setAutoScale(1)
!
! optional dynamic title:
pf.setPlotFrameTitle( " y = " + format(a,2) + " ( x" + format(b,-2) + " )^2" + format(c,-2) )
pf.setXYLabels( "x", "y" )