st-comp 0.0.177 → 0.0.178
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/KlinePlus.cjs +3 -3
- package/es/KlinePlus.js +45 -45
- package/es/style.css +1 -1
- package/lib/bundle.js +1 -1
- package/lib/bundle.umd.cjs +1 -1
- package/lib/{index-00f44742.js → index-0f16f8b0.js} +3 -3
- package/lib/{python-1fd0288d.js → python-e9c32bc9.js} +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/packages/KlinePlus/index.vue +2 -2
package/package.json
CHANGED
|
@@ -660,10 +660,10 @@ const drawScreenMaxPrice = () => {
|
|
|
660
660
|
let formatter = `←${maxPrice}`;
|
|
661
661
|
if (positionInView > 0.7) {
|
|
662
662
|
position = "left";
|
|
663
|
-
formatter = `${maxPrice}→`;
|
|
663
|
+
formatter = `${round(maxPrice)}→`;
|
|
664
664
|
} else {
|
|
665
665
|
position = "right";
|
|
666
|
-
formatter = `←${maxPrice}`;
|
|
666
|
+
formatter = `←${round(maxPrice)}`;
|
|
667
667
|
}
|
|
668
668
|
mainChartIns?.setOption(
|
|
669
669
|
{
|