Carga
This commit is contained in:
2025-04-17 00:35:33 -06:00
parent 4977462629
commit 67fc72aed5
1333 changed files with 1077639 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
/* *
*
* (c) 2009-2021 Øystein Moseng
*
* Default options for sonification.
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
'use strict';
/* *
*
* Constants
*
* */
// Experimental, disabled by default, not exposed in API
var options = {
sonification: {
enabled: false,
duration: 2500,
afterSeriesWait: 700,
masterVolume: 1,
order: 'sequential',
defaultInstrumentOptions: {
instrument: 'sineMusical',
// Start at G4 note, end at C6
minFrequency: 392,
maxFrequency: 1046,
mapping: {
pointPlayTime: 'x',
duration: 200,
frequency: 'y'
}
}
}
};
/* *
*
* Default Export
*
* */
export default options;